From ce5233ffb34fbdf3182100f8881e111a9486a89d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 13 Aug 2001 02:39:13 +0000 Subject: Fixed typo in debug message. (This used to be commit 45254ae23b9bcbc94857b986c69b2b1770c79c54) --- source3/passdb/passdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/passdb') 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); -- cgit