fixing typos in debug statements
authorGerald Carter <jerry@samba.org>
Mon, 12 May 2003 16:06:05 +0000 (16:06 +0000)
committerGerald Carter <jerry@samba.org>
Mon, 12 May 2003 16:06:05 +0000 (16:06 +0000)
(This used to be commit f59bcb51cfe4e268ba43245d401d212aefdf2b72)

source3/passdb/pdb_ldap.c
source3/smbd/password.c

index 53fefd633634237e78721abb2440f9f07b7358f6..dbc0bdc1c0bcef37bcf4ff913a184ab980bf4927 100644 (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;
        }
 
index 8dff42471fdbab67330d0d9977b7240a09f89047..415025f6491ae20d6c0c1e80b366aedbc97b7c24 100644 (file)
@@ -229,7 +229,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 {