libnet: Fix a typo in dbsync error message.
authorMichael Adam <obnox@samba.org>
Fri, 30 Nov 2012 11:31:55 +0000 (12:31 +0100)
committerVolker Lendecke <vl@samba.org>
Fri, 30 Nov 2012 13:02:54 +0000 (14:02 +0100)
Signed-off-by: Michael Adam <obnox@samba.org>
source4/libnet/libnet_samsync.c

index 62e050003bf506174703290a5c9c647cd41459c7..9629b9f0856345f793749e9196a521f2245ed270 100644 (file)
@@ -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(dbsync_nt_status));
+                       r->out.error_string = talloc_asprintf(mem_ctx, "libnet_SamSync_netlogon failed: unexpected inconsistency. Should not get error %s here", nt_errstr(dbsync_nt_status));
                        talloc_free(samsync_ctx);
                        return dbsync_nt_status;
                }