summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-05-12 16:08:11 +0000
committerGerald Carter <jerry@samba.org>2003-05-12 16:08:11 +0000
commitd33db506ca7f62730c7954d9f19d184171a5d16b (patch)
tree3642d68f69b0624e6b1851b3779ed0dde655920f /source3/smbd
parent04cb5dfe0cbdc55575a70eae17e4d82c781786d8 (diff)
downloadsamba-d33db506ca7f62730c7954d9f19d184171a5d16b.tar.gz
samba-d33db506ca7f62730c7954d9f19d184171a5d16b.tar.bz2
samba-d33db506ca7f62730c7954d9f19d184171a5d16b.zip
fixing typos in debug statements
(This used to be commit bd660f45df4df686f58a181f002ca1d88e7c1015)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/password.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c
index c4f813b00c..81849b709a 100644
--- a/source3/smbd/password.c
+++ b/source3/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 {