From: Tim Potter Date: Mon, 13 Aug 2001 02:39:13 +0000 (+0000) Subject: Fixed typo in debug message. X-Git-Tag: samba-2.2.5pre1~1555^2~159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=45254ae23b9bcbc94857b986c69b2b1770c79c54;p=thirdparty%2Fsamba.git Fixed typo in debug message. --- diff --git a/source/passdb/passdb.c b/source/passdb/passdb.c index 640be5b1082..8144a8e3dde 100644 --- a/source/passdb/passdb.c +++ b/source/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);