summaryrefslogtreecommitdiff
path: root/source4/libnet
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2012-11-30 11:01:47 +0100
committerVolker Lendecke <vl@samba.org>2012-11-30 14:02:53 +0100
commit7a429367a99fe4d77c8347f21e7b3247281191eb (patch)
tree063feeefae5e3b9208701d417fd94f0c8268d679 /source4/libnet
parentf3d5d14906e588d44fa255fb9206b825215946ec (diff)
downloadsamba-7a429367a99fe4d77c8347f21e7b3247281191eb.tar.gz
samba-7a429367a99fe4d77c8347f21e7b3247281191eb.tar.bz2
samba-7a429367a99fe4d77c8347f21e7b3247281191eb.zip
libnet: Fix copy and paste error in dbsync error message.
Diffstat (limited to 'source4/libnet')
-rw-r--r--source4/libnet/libnet_samsync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_samsync.c b/source4/libnet/libnet_samsync.c
index 7c999db5eb..62e050003b 100644
--- a/source4/libnet/libnet_samsync.c
+++ b/source4/libnet/libnet_samsync.c
@@ -270,7 +270,7 @@ NTSTATUS libnet_SamSync_netlogon(struct libnet_context *ctx, TALLOC_CTX *mem_ctx
} while (NT_STATUS_EQUAL(dbsync_nt_status, STATUS_MORE_ENTRIES));
if (!NT_STATUS_IS_OK(dbsync_nt_status)) {
- r->out.error_string = talloc_asprintf(mem_ctx, "libnet_SamSync_netlogon failed: unexpected inconsistancy. Should not get error %s here", nt_errstr(nt_status));
+ r->out.error_string = talloc_asprintf(mem_ctx, "libnet_SamSync_netlogon failed: unexpected inconsistancy. Should not get error %s here", nt_errstr(dbsync_nt_status));
talloc_free(samsync_ctx);
return dbsync_nt_status;
}