diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-05-06 10:08:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:48 -0500 |
commit | f1619152ba9083fd5e65f8768cc6385df1b714f5 (patch) | |
tree | 7e48499853771dff5586f0788ee6643479e36c43 | |
parent | 02e3717ee9e045d197d845489e84ac40083ca868 (diff) | |
download | samba-f1619152ba9083fd5e65f8768cc6385df1b714f5.tar.gz samba-f1619152ba9083fd5e65f8768cc6385df1b714f5.tar.bz2 samba-f1619152ba9083fd5e65f8768cc6385df1b714f5.zip |
r6627: Fix debug message
(This used to be commit 6a5a9f17fb3c18e9dd8d447889b527055e5e3bd5)
-rw-r--r-- | source3/nsswitch/winbindd_group.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_group.c b/source3/nsswitch/winbindd_group.c index f0d3bc43ea..506ed12cbd 100644 --- a/source3/nsswitch/winbindd_group.c +++ b/source3/nsswitch/winbindd_group.c @@ -1071,8 +1071,8 @@ enum winbindd_result winbindd_getgroups(struct winbindd_cli_state *state) } if ( domain->primary && lp_winbind_trusted_domains_only()) { - DEBUG(7,("winbindd_getpwnam: My domain -- rejecting getgroups() for %s\\%s.\n", - name_domain, name_user)); + DEBUG(7,("winbindd_getgroups: My domain -- rejecting " + "getgroups() for %s\\%s.\n", name_domain, name_user)); return WINBINDD_ERROR; } |