1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fixed typo in debug message.

(This used to be commit 45254ae23b)
This commit is contained in:
Tim Potter 2001-08-13 02:39:13 +00:00
parent 6b60c28acc
commit ce5233ffb3

View File

@ -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);