1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

s3:winbindd_user: fix a debug message.

find_domain_from_name_noinit() is no longer called only for
name alias support.

Michael
This commit is contained in:
Michael Adam 2009-02-09 11:07:11 +01:00
parent 3ce895181b
commit a63f602473

View File

@ -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;
}