diff options
author | Günther Deschner <gd@samba.org> | 2006-06-12 13:59:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:17:23 -0500 |
commit | ee1105754c93ad236f70ced98228114d9d7ec425 (patch) | |
tree | 630eae1a4b105534802169c27f73303a05811095 | |
parent | ab710c9e25c24cc69876279125297b7755304070 (diff) | |
download | samba-ee1105754c93ad236f70ced98228114d9d7ec425.tar.gz samba-ee1105754c93ad236f70ced98228114d9d7ec425.tar.bz2 samba-ee1105754c93ad236f70ced98228114d9d7ec425.zip |
r16154: Fix winbind function table typo.
Guenther
(This used to be commit aeff1f0c47992ce3941e27e63f9b1516c4918963)
-rw-r--r-- | source3/nsswitch/winbindd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index cc904c3209..046ea40f59 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -235,7 +235,7 @@ static struct winbindd_dispatch_table { { WINBINDD_UID_TO_SID, winbindd_uid_to_sid, "UID_TO_SID" }, { WINBINDD_GID_TO_SID, winbindd_gid_to_sid, "GID_TO_SID" }, { WINBINDD_ALLOCATE_UID, winbindd_allocate_uid, "ALLOCATE_UID" }, - { WINBINDD_ALLOCATE_GID, winbindd_allocate_uid, "ALLOCATE_GID" }, + { WINBINDD_ALLOCATE_GID, winbindd_allocate_gid, "ALLOCATE_GID" }, /* Miscellaneous */ |