diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-09-04 16:52:34 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-11 19:44:56 +0200 |
commit | a4bf85ccc902490c3b75b44532010fbb32169801 (patch) | |
tree | 77321838168f69e052bb2e09ec2fba7024a3ae2a /src/providers/simple | |
parent | f2c346eaa486431ffa2a3adc05356159de834e2e (diff) | |
download | sssd-a4bf85ccc902490c3b75b44532010fbb32169801.tar.gz sssd-a4bf85ccc902490c3b75b44532010fbb32169801.tar.bz2 sssd-a4bf85ccc902490c3b75b44532010fbb32169801.zip |
Fix formating of variables with type: gid_t
Diffstat (limited to 'src/providers/simple')
-rw-r--r-- | src/providers/simple/simple_access_check.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/providers/simple/simple_access_check.c b/src/providers/simple/simple_access_check.c index 7335135e..5c2884ab 100644 --- a/src/providers/simple/simple_access_check.c +++ b/src/providers/simple/simple_access_check.c @@ -245,7 +245,7 @@ simple_resolve_group_check(struct simple_resolve_group_state *state) group_attrs, &group); if (ret != EOK) { DEBUG(SSSDBG_OP_FAILURE, - ("Could not look up group by gid [%lu]: [%d][%s]\n", + ("Could not look up group by gid [%"SPRIgid"]: [%d][%s]\n", state->gid, ret, sss_strerror(ret))); return ret; } @@ -470,7 +470,7 @@ static void simple_check_get_groups_next(struct tevent_req *subreq) talloc_zfree(subreq); if (ret != EOK) { DEBUG(SSSDBG_OP_FAILURE, - ("Could not resolve name of group with GID %llu\n", + ("Could not resolve name of group with GID %"SPRIgid"\n", state->lookup_gids[state->giter])); tevent_req_error(req, ret); return; @@ -545,7 +545,7 @@ simple_check_process_group(struct simple_check_groups_state *state, /* Non-posix group with a GID. Needs resolving */ state->lookup_gids[state->num_gids] = gid; - DEBUG(SSSDBG_TRACE_INTERNAL, ("Adding GID %llu\n", gid)); + DEBUG(SSSDBG_TRACE_INTERNAL, ("Adding GID %"SPRIgid"\n", gid)); state->num_gids++; return EOK; } @@ -564,7 +564,7 @@ simple_check_get_groups_primary(struct simple_check_groups_state *state, gid, group_attrs, &msg); if (ret != EOK) { DEBUG(SSSDBG_OP_FAILURE, - ("Could not look up primary group [%lu]: [%d][%s]\n", + ("Could not look up primary group [%"SPRIgid"]: [%d][%s]\n", gid, ret, sss_strerror(ret))); /* We have to treat this as non-fatal, because the primary * group may be local to the machine and not available in |