summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-06-04 03:14:56 +0000
committerTim Potter <tpot@samba.org>2001-06-04 03:14:56 +0000
commita5f7cd89e17fe84a9661602fd0077ed10d415e9d (patch)
tree772eafe6ac614d9fbf0c5a3a58a74f173080725f
parent4ebfe75e0e34c53999f3e1c037f39f072b4fbe29 (diff)
downloadsamba-a5f7cd89e17fe84a9661602fd0077ed10d415e9d.tar.gz
samba-a5f7cd89e17fe84a9661602fd0077ed10d415e9d.tar.bz2
samba-a5f7cd89e17fe84a9661602fd0077ed10d415e9d.zip
Compile fix for solaris.
Fixed some compiler warnings. (This used to be commit b44d3f912c346e00f41a4ff59877adad3b9c3bb0)
-rw-r--r--source3/nsswitch/wbinfo.c12
1 files 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;
}