summaryrefslogtreecommitdiff
path: root/source3/passdb
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-08-13 02:39:13 +0000
committerTim Potter <tpot@samba.org>2001-08-13 02:39:13 +0000
commitce5233ffb34fbdf3182100f8881e111a9486a89d (patch)
tree3c70070622e8faea728eeb4525393901d7f520a9 /source3/passdb
parent6b60c28acca29f3803b9065f4969933188c45153 (diff)
downloadsamba-ce5233ffb34fbdf3182100f8881e111a9486a89d.tar.gz
samba-ce5233ffb34fbdf3182100f8881e111a9486a89d.tar.bz2
samba-ce5233ffb34fbdf3182100f8881e111a9486a89d.zip
Fixed typo in debug message.
(This used to be commit 45254ae23b9bcbc94857b986c69b2b1770c79c54)
Diffstat (limited to 'source3/passdb')
-rw-r--r--source3/passdb/passdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c
index 640be5b108..8144a8e3dd 100644
--- a/source3/passdb/passdb.c
+++ b/source3/passdb/passdb.c
@@ -1501,7 +1501,7 @@ BOOL pdb_set_nt_passwd (SAM_ACCOUNT *sampass, uint8 *pwd)
if (!sampass || !pwd) return False;
if (sampass->nt_pw!=NULL)
- DEBUG(0,("pdb_set_nt_passwd: NT hash non NULL overwritting ?\n"));
+ DEBUG(0,("pdb_set_nt_passwd: NT hash non NULL overwriting ?\n"));
else
sampass->nt_pw=(unsigned char *)malloc(sizeof(unsigned char)*16);
@@ -1521,7 +1521,7 @@ BOOL pdb_set_lanman_passwd (SAM_ACCOUNT *sampass, uint8 *pwd)
if (!sampass || !pwd) return False;
if (sampass->lm_pw!=NULL)
- DEBUG(0,("pdb_set_lanman_passwd: LM hash non NULL overwritting ?\n"));
+ DEBUG(0,("pdb_set_lanman_passwd: LM hash non NULL overwriting ?\n"));
else
sampass->lm_pw=(unsigned char *)malloc(sizeof(unsigned char)*16);