]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Fixed typo in debug message.
authorTim Potter <tpot@samba.org>
Mon, 13 Aug 2001 02:39:13 +0000 (02:39 +0000)
committerTim Potter <tpot@samba.org>
Mon, 13 Aug 2001 02:39:13 +0000 (02:39 +0000)
source/passdb/passdb.c

index 640be5b1082630be5ee177147c50fac3315db202..8144a8e3dde42dddee8a2f6a5df6a82937d217c2 100644 (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);