From bd660f45df4df686f58a181f002ca1d88e7c1015 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Mon, 12 May 2003 16:08:11 +0000 Subject: [PATCH] fixing typos in debug statements --- source/passdb/pdb_ldap.c | 2 +- source/smbd/password.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index b23b7286ea6..da3a163c1e6 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -471,7 +471,7 @@ static int ldapsam_open(struct ldapsam_privates *ldap_state) } if (ldap_state->ldap_struct != NULL) { - DEBUG(5,("ldapsam_open: allready connected to the LDAP server\n")); + DEBUG(5,("ldapsam_open: already connected to the LDAP server\n")); return LDAP_SUCCESS; } diff --git a/source/smbd/password.c b/source/smbd/password.c index c4f813b00cc..81849b709a2 100644 --- a/source/smbd/password.c +++ b/source/smbd/password.c @@ -222,7 +222,7 @@ int register_vuid(auth_serversupplied_info *server_info, const char *smb_name) /* Register a home dir service for this user */ if ((!vuser->guest) && vuser->unix_homedir && *(vuser->unix_homedir)) { - DEBUG(3, ("Adding/updating homes service for user '%s' using home direcotry: '%s'\n", + DEBUG(3, ("Adding/updating homes service for user '%s' using home directory: '%s'\n", vuser->user.unix_name, vuser->unix_homedir)); vuser->homes_snum = add_home_service(vuser->user.unix_name, vuser->user.unix_name, vuser->unix_homedir); } else {