diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-08-11 16:20:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:30 -0500 |
commit | ef6c3a3c7a62188112561781449f05e25ccee58e (patch) | |
tree | ca53b52101a250a8b7007338a7161c3a5b9c4b22 | |
parent | 1b69659315d5332c3de3b41d68ea84b98e2b25bd (diff) | |
download | samba-ef6c3a3c7a62188112561781449f05e25ccee58e.tar.gz samba-ef6c3a3c7a62188112561781449f05e25ccee58e.tar.bz2 samba-ef6c3a3c7a62188112561781449f05e25ccee58e.zip |
r24331: Fix an error where gid_t != 32 bit
(This used to be commit 748fdfbd7ba5cc844f1370a968465b19ae698f94)
-rw-r--r-- | source3/nsswitch/nss_info_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/nss_info_template.c b/source3/nsswitch/nss_info_template.c index 2dd3a5bc5a..aaf02e4abe 100644 --- a/source3/nsswitch/nss_info_template.c +++ b/source3/nsswitch/nss_info_template.c @@ -40,7 +40,7 @@ static NTSTATUS nss_template_get_info( struct nss_domain_entry *e, char **homedir, char **shell, char **gecos, - uint32 *gid ) + gid_t *gid ) { if ( !homedir || !shell || !gecos ) return NT_STATUS_INVALID_PARAMETER; |