From 7a429367a99fe4d77c8347f21e7b3247281191eb Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 30 Nov 2012 11:01:47 +0100 Subject: [PATCH] libnet: Fix copy and paste error in dbsync error message. --- source4/libnet/libnet_samsync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/libnet/libnet_samsync.c b/source4/libnet/libnet_samsync.c index 7c999db5eb2..62e050003bf 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; } -- 2.11.4.GIT