1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s4:drepl_service.c - fix error macro (use "_werr" and not "werr")

Detected by Tru64 "cc".
This commit is contained in:
Matthias Dieter Wallnöfer 2010-11-27 20:12:25 +01:00
parent a13bd32fa9
commit bfb28243d0

View File

@ -226,7 +226,7 @@ static NTSTATUS drepl_replica_sync(struct irpc_message *msg,
struct dreplsrv_service);
#define REPLICA_SYNC_FAIL(_msg, _werr) do {\
if (!W_ERROR_IS_OK(werr)) { \
if (!W_ERROR_IS_OK(_werr)) { \
DEBUG(0,(__location__ ": Failure - %s. werr = %s\n", \
_msg, win_errstr(_werr))); \
NDR_PRINT_IN_DEBUG(drsuapi_DsReplicaSync, r); \