diff options
author | Michael Adam <obnox@samba.org> | 2009-02-09 11:07:11 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-02-09 14:03:52 +0100 |
commit | a63f6024739e922e0bb6c929a1b9112e5e8e09de (patch) | |
tree | c355149d8d26237b25b7799a70b6b6cca36a9623 /source3/winbindd | |
parent | 3ce895181be9f0a91c17c1c5261a92159f154a86 (diff) | |
download | samba-a63f6024739e922e0bb6c929a1b9112e5e8e09de.tar.gz samba-a63f6024739e922e0bb6c929a1b9112e5e8e09de.tar.bz2 samba-a63f6024739e922e0bb6c929a1b9112e5e8e09de.zip |
s3:winbindd_user: fix a debug message.
find_domain_from_name_noinit() is no longer called only for
name alias support.
Michael
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_user.c b/source3/winbindd/winbindd_user.c index 28c1c01cf6..a6740b1fb8 100644 --- a/source3/winbindd/winbindd_user.c +++ b/source3/winbindd/winbindd_user.c @@ -82,8 +82,8 @@ static bool winbindd_fill_pwent(TALLOC_CTX *ctx, char *dom_name, char *user_name domain = find_domain_from_name_noinit(dom_name); if (domain == NULL) { - DEBUG(5,("winbindd_fill_pwent: Failed to find domain for %s. " - "Disabling name alias support\n", dom_name)); + DEBUG(5,("winbindd_fill_pwent: Failed to find domain for %s.\n", + dom_name)); nt_status = NT_STATUS_NO_SUCH_DOMAIN; return false; } |