diff options
author | Gerald Carter <jerry@samba.org> | 2001-01-24 15:41:07 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2001-01-24 15:41:07 +0000 |
commit | ba3ee7fdaa44eb18de0346ab2d4f88c24c6a461b (patch) | |
tree | 2fef23eeb205a04311e27e7b3e655740a8e47422 | |
parent | d53f9716bb10efe164b67f9916ab5e59880c9b7c (diff) | |
download | samba-ba3ee7fdaa44eb18de0346ab2d4f88c24c6a461b.tar.gz samba-ba3ee7fdaa44eb18de0346ab2d4f88c24c6a461b.tar.bz2 samba-ba3ee7fdaa44eb18de0346ab2d4f88c24c6a461b.zip |
fixed typo in debug statement
jerry
(This used to be commit a28d384e4d7aff1578f22947d34338b75ceab76d)
-rw-r--r-- | source3/lib/username.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/username.c b/source3/lib/username.c index d70f9bddd6..9f9fad048d 100644 --- a/source3/lib/username.c +++ b/source3/lib/username.c @@ -197,8 +197,8 @@ struct passwd *Get_Pwnam(char *user,BOOL allow_change) /* Try as given, if username wasn't originally lowercase */ if(strcmp(user,user2) != 0) { - DEBUG(5,("Trying _Get_Pwnam(), username as given is %s\n",user2)); - ret = _Get_Pwnam(user2); + DEBUG(5,("Trying _Get_Pwnam(), username as given is %s\n",user)); + ret = _Get_Pwnam(user); if(ret) goto done; } |