summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-10-09 06:25:40 +0000
committerTim Potter <tpot@samba.org>2003-10-09 06:25:40 +0000
commitf6e62c44168f1ae3f60350aec9df10a1272e55e5 (patch)
treedb4c9ef7b0bc6caa4d260b2ba1d4def04933ab2b
parentd45428161f17e7b899a7d0f860a51bfed0721459 (diff)
downloadsamba-f6e62c44168f1ae3f60350aec9df10a1272e55e5.tar.gz
samba-f6e62c44168f1ae3f60350aec9df10a1272e55e5.tar.bz2
samba-f6e62c44168f1ae3f60350aec9df10a1272e55e5.zip
Merge from 3.0:
>Typo in error message. >Jeremy. (This used to be commit 85eda9bc0c3d0e62c436a3958ec4a76d0e909d4c)
-rw-r--r--source3/passdb/passdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c
index cdbda38983..0afa130a67 100644
--- a/source3/passdb/passdb.c
+++ b/source3/passdb/passdb.c
@@ -936,7 +936,7 @@ BOOL local_password_change(const char *user_name, int local_flags,
if ((local_flags & LOCAL_ADD_USER) || (local_flags & LOCAL_DELETE_USER)) {
/* Might not exist in /etc/passwd. Use rid algorithm here */
if (!NT_STATUS_IS_OK(pdb_init_sam_new(&sam_pass, user_name, 0))) {
- slprintf(err_str, err_str_len-1, "Failed initialise SAM_ACCOUNT for user %s.\n", user_name);
+ slprintf(err_str, err_str_len-1, "Failed to initialise SAM_ACCOUNT for user %s.\n", user_name);
return False;
}
} else {