From a5f7cd89e17fe84a9661602fd0077ed10d415e9d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 4 Jun 2001 03:14:56 +0000 Subject: Compile fix for solaris. Fixed some compiler warnings. (This used to be commit b44d3f912c346e00f41a4ff59877adad3b9c3bb0) --- source3/nsswitch/wbinfo.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index 1a51a5b610..6c5c476dfc 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -22,15 +22,13 @@ */ #include "includes.h" -#include "winbind_nss_config.h" #include "winbindd.h" #include "debug.h" /* Prototypes from common.h - only needed #if TNG */ -enum nss_status winbindd_request(int req_type, - struct winbindd_request *request, - struct winbindd_response *response); +int winbindd_request(int req_type, struct winbindd_request *request, + struct winbindd_response *response); /* List groups a user is a member of */ @@ -53,7 +51,7 @@ static BOOL wbinfo_get_usergroups(char *user) } for (i = 0; i < response.data.num_entries; i++) { - printf("%d\n", ((gid_t *)response.extra_data)[i]); + printf("%d\n", (int)((gid_t *)response.extra_data)[i]); } return True; @@ -184,7 +182,7 @@ static BOOL wbinfo_sid_to_uid(char *sid) /* Display response */ - printf("%d\n", response.data.uid); + printf("%d\n", (int)response.data.uid); return True; } @@ -207,7 +205,7 @@ static BOOL wbinfo_sid_to_gid(char *sid) /* Display response */ - printf("%d\n", response.data.gid); + printf("%d\n", (int)response.data.gid); return True; } -- cgit