summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_access.c
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-07-17 14:03:41 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-11 19:44:54 +0200
commit69c83119c0504fd1590299b8a4ecdabf86a8f18d (patch)
tree7cfbc29a203d8a08ebc703891857fb4f22fa8ee6 /src/providers/ldap/sdap_access.c
parent10a9ff0c9b4f347ec24dab887a538b37274ee498 (diff)
downloadsssd-69c83119c0504fd1590299b8a4ecdabf86a8f18d.tar.gz
sssd-69c83119c0504fd1590299b8a4ecdabf86a8f18d.tar.xz
sssd-69c83119c0504fd1590299b8a4ecdabf86a8f18d.zip
Fix formating of variables with type defined in stdint.h
Diffstat (limited to 'src/providers/ldap/sdap_access.c')
-rw-r--r--src/providers/ldap/sdap_access.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/providers/ldap/sdap_access.c b/src/providers/ldap/sdap_access.c
index 9ea907755..a4c638650 100644
--- a/src/providers/ldap/sdap_access.c
+++ b/src/providers/ldap/sdap_access.c
@@ -338,8 +338,9 @@ static errno_t sdap_account_expired_ad(struct pam_data *pd,
expiration_time = ldb_msg_find_attr_as_uint64(user_entry,
SYSDB_AD_ACCOUNT_EXPIRES, 0);
- DEBUG(9, ("Expiration time for user [%s] is [%lld].\n",
- pd->user, expiration_time));
+ DEBUG(SSSDBG_TRACE_ALL,
+ ("Expiration time for user [%s] is [%"PRIu64"].\n",
+ pd->user, expiration_time));
if (uac & UAC_ACCOUNTDISABLE) {