summaryrefslogtreecommitdiff
path: root/source4/dsdb/repl
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-11-27 20:12:25 +0100
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-11-27 21:50:42 +0100
commitbfb28243d0a6d37c7ce10641a4b65539152799be (patch)
tree93c820ba38580e6259013d3d49b18b8ac2859ca1 /source4/dsdb/repl
parenta13bd32fa90ce0129227805811ed58490d8dba73 (diff)
downloadsamba-bfb28243d0a6d37c7ce10641a4b65539152799be.tar.gz
samba-bfb28243d0a6d37c7ce10641a4b65539152799be.tar.bz2
samba-bfb28243d0a6d37c7ce10641a4b65539152799be.zip
s4:drepl_service.c - fix error macro (use "_werr" and not "werr")
Detected by Tru64 "cc".
Diffstat (limited to 'source4/dsdb/repl')
-rw-r--r--source4/dsdb/repl/drepl_service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/repl/drepl_service.c b/source4/dsdb/repl/drepl_service.c
index 11f81bbed2..c8bbcfeb17 100644
--- a/source4/dsdb/repl/drepl_service.c
+++ b/source4/dsdb/repl/drepl_service.c
@@ -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); \