1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-01 21:18:10 +03:00

fixing typos in debug statements

(This used to be commit bd660f45df)
This commit is contained in:
Gerald Carter 2003-05-12 16:08:11 +00:00
parent 04cb5dfe0c
commit d33db506ca
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -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 {