diff options
author | Michael Adam <obnox@samba.org> | 2012-11-30 12:31:55 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-11-30 14:02:54 +0100 |
commit | 06e1fca044718ed2d61ef9fe394845514dd5a652 (patch) | |
tree | f8a57bd64c873c253295215a435a93b333dfc4af /source4/libnet | |
parent | 7a429367a99fe4d77c8347f21e7b3247281191eb (diff) | |
download | samba-06e1fca044718ed2d61ef9fe394845514dd5a652.tar.gz samba-06e1fca044718ed2d61ef9fe394845514dd5a652.tar.bz2 samba-06e1fca044718ed2d61ef9fe394845514dd5a652.zip |
libnet: Fix a typo in dbsync error message.
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source4/libnet')
-rw-r--r-- | source4/libnet/libnet_samsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_samsync.c b/source4/libnet/libnet_samsync.c index 62e050003b..9629b9f085 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(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; } |