diff options
author | Tim Potter <tpot@samba.org> | 2002-11-02 01:05:47 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-11-02 01:05:47 +0000 |
commit | aed20178dfa880301163bed5192e42712bc64146 (patch) | |
tree | 7d1393c0838cec2a7a9ad2d009bff3f36b2539eb | |
parent | 84ef8d47a1588e1a376be2b36ca50e00dd842d67 (diff) | |
download | samba-aed20178dfa880301163bed5192e42712bc64146.tar.gz samba-aed20178dfa880301163bed5192e42712bc64146.tar.bz2 samba-aed20178dfa880301163bed5192e42712bc64146.zip |
Handle the case where the password used in RPC connections (for restrict
anonymous support) is blank.
(This used to be commit 7badccda46a0837dd9da802b44c2fbcb4f38845a)
-rw-r--r-- | source3/nsswitch/winbindd_cm.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index 3b83fde95b..0287d2a866 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/nsswitch/winbindd_cm.c @@ -267,11 +267,16 @@ static void cm_get_ipc_userpass(char **username, char **domain, char **password) *password = secrets_fetch(SECRETS_AUTH_PASSWORD, NULL); if (*username && **username) { - if (!*domain || !**domain) { + + if (!*domain || !**domain) *domain = smb_xstrdup(lp_workgroup()); - } - DEBUG(3, ("IPC$ connections done by user %s\\%s\n", *domain, *username)); + if (!*password || !**password) + *password = smb_xstrdup(""); + + DEBUG(3, ("IPC$ connections done by user %s\\%s\n", + *domain, *username)); + } else { DEBUG(3, ("IPC$ connections done anonymously\n")); *username = smb_xstrdup(""); |