diff options
author | Jeremy Allison <jra@samba.org> | 2009-05-11 21:56:57 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-05-11 21:56:57 -0700 |
commit | b4c9cfb2af8f4dd5e18f032c410694e491f1bd74 (patch) | |
tree | c4cfaa30ad841a7b425ecd903edf2f0fc304f833 /source3/winbindd | |
parent | 14c1e9fae2a34d77b0ba21ffb570e84b6e433a14 (diff) | |
download | samba-b4c9cfb2af8f4dd5e18f032c410694e491f1bd74.tar.gz samba-b4c9cfb2af8f4dd5e18f032c410694e491f1bd74.tar.xz samba-b4c9cfb2af8f4dd5e18f032c410694e491f1bd74.zip |
Fix a bunch of compiler warnings about wrong format types.
Should make Solaris 10 builds look cleaner.
Jeremy.
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/idmap_util.c | 6 | ||||
-rw-r--r-- | source3/winbindd/winbindd_cache.c | 2 | ||||
-rw-r--r-- | source3/winbindd/winbindd_ccache_access.c | 11 | ||||
-rw-r--r-- | source3/winbindd/winbindd_idmap.c | 4 | ||||
-rw-r--r-- | source3/winbindd/winbindd_pam.c | 2 |
5 files changed, 14 insertions, 11 deletions
diff --git a/source3/winbindd/idmap_util.c b/source3/winbindd/idmap_util.c index ad4a7ddd99..7d261a611e 100644 --- a/source3/winbindd/idmap_util.c +++ b/source3/winbindd/idmap_util.c @@ -40,7 +40,8 @@ NTSTATUS idmap_uid_to_sid(const char *domname, DOM_SID *sid, uid_t uid) if (winbindd_use_idmap_cache() && idmap_cache_find_uid2sid(uid, sid, &expired)) { - DEBUG(10, ("idmap_cache_find_uid2sid found %d%s\n", uid, + DEBUG(10, ("idmap_cache_find_uid2sid found %u%s\n", + (unsigned int)uid, expired ? " (expired)": "")); if (expired && idmap_is_online()) { DEBUG(10, ("revalidating expired entry\n")); @@ -98,7 +99,8 @@ NTSTATUS idmap_gid_to_sid(const char *domname, DOM_SID *sid, gid_t gid) if (winbindd_use_idmap_cache() && idmap_cache_find_gid2sid(gid, sid, &expired)) { - DEBUG(10, ("idmap_cache_find_gid2sid found %d%s\n", gid, + DEBUG(10, ("idmap_cache_find_gid2sid found %u%s\n", + (unsigned int)gid, expired ? " (expired)": "")); if (expired && idmap_is_online()) { DEBUG(10, ("revalidating expired entry\n")); diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 5c1b71897d..e5a72cbfd9 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -4237,7 +4237,7 @@ do_query: DEBUG(10, ("result:\n\thomedir = '%s'\n", *homedir)); DEBUGADD(10, ("\tshell = '%s'\n", *shell)); DEBUGADD(10, ("\tgecos = '%s'\n", *gecos)); - DEBUGADD(10, ("\tgid = '%u'\n", *p_gid)); + DEBUGADD(10, ("\tgid = '%u'\n", (unsigned int)*p_gid)); wcache_save_user_pwinfo( domain, nt_status, user_sid, *homedir, *shell, *gecos, *p_gid ); diff --git a/source3/winbindd/winbindd_ccache_access.c b/source3/winbindd/winbindd_ccache_access.c index a696db1031..dd6d352960 100644 --- a/source3/winbindd/winbindd_ccache_access.c +++ b/source3/winbindd/winbindd_ccache_access.c @@ -31,11 +31,12 @@ static bool client_can_access_ccache_entry(uid_t client_uid, struct WINBINDD_MEMORY_CREDS *entry) { if (client_uid == entry->uid || client_uid == 0) { - DEBUG(10, ("Access granted to uid %d\n", client_uid)); + DEBUG(10, ("Access granted to uid %u\n", (unsigned int)client_uid)); return True; } - DEBUG(1, ("Access denied to uid %d (expected %d)\n", client_uid, entry->uid)); + DEBUG(1, ("Access denied to uid %u (expected %u)\n", + (unsigned int)client_uid, (unsigned int)entry->uid)); return False; } @@ -137,9 +138,9 @@ static bool check_client_uid(struct winbindd_cli_state *state, uid_t uid) } if (uid != ret_uid) { - DEBUG(1, ("check_client_uid: Client lied about its uid: said %d, " - "actually was %d; denying access\n", - uid, ret_uid)); + DEBUG(1, ("check_client_uid: Client lied about its uid: said %u, " + "actually was %u; denying access\n", + (unsigned int)uid, (unsigned int)ret_uid)); return False; } diff --git a/source3/winbindd/winbindd_idmap.c b/source3/winbindd/winbindd_idmap.c index 94a8c78a85..9f5d17ec7c 100644 --- a/source3/winbindd/winbindd_idmap.c +++ b/source3/winbindd/winbindd_idmap.c @@ -303,7 +303,7 @@ enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain, DEBUG(10, ("winbindd_dual_sid2uid: 0x%08x - %s - %u\n", NT_STATUS_V(result), sid_string_dbg(&sid), - state->response.data.uid)); + (unsigned int)state->response.data.uid)); return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR; } @@ -376,7 +376,7 @@ enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain, DEBUG(10, ("winbindd_dual_sid2gid: 0x%08x - %s - %u\n", NT_STATUS_V(result), sid_string_dbg(&sid), - state->response.data.gid)); + (unsigned int)state->response.data.gid)); return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR; } diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c index 23de20f0d3..bbf3526fd0 100644 --- a/source3/winbindd/winbindd_pam.c +++ b/source3/winbindd/winbindd_pam.c @@ -544,7 +544,7 @@ static uid_t get_uid_from_state(struct winbindd_cli_state *state) uid = state->request.data.auth.uid; if (uid < 0) { - DEBUG(1,("invalid uid: '%d'\n", uid)); + DEBUG(1,("invalid uid: '%u'\n", (unsigned int)uid)); return -1; } return uid; |