summaryrefslogtreecommitdiff
path: root/src/providers/krb5/krb5_common.c
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-07-13 15:25:47 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-11 19:44:53 +0200
commit57cd3443dcb7c073c5a00a9f2c3c3a3030ae2d3e (patch)
treecdeeeedebdb764e83f3b7c9e5110231dfcf77163 /src/providers/krb5/krb5_common.c
parentfc6afb011198f84a30e6598c62923b5a588ccd54 (diff)
downloadsssd-57cd3443dcb7c073c5a00a9f2c3c3a3030ae2d3e.tar.gz
sssd-57cd3443dcb7c073c5a00a9f2c3c3a3030ae2d3e.tar.bz2
sssd-57cd3443dcb7c073c5a00a9f2c3c3a3030ae2d3e.zip
Fix formating of variables with type: long
Diffstat (limited to 'src/providers/krb5/krb5_common.c')
-rw-r--r--src/providers/krb5/krb5_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/krb5/krb5_common.c b/src/providers/krb5/krb5_common.c
index dedb734f..80eaeb56 100644
--- a/src/providers/krb5/krb5_common.c
+++ b/src/providers/krb5/krb5_common.c
@@ -653,7 +653,7 @@ static errno_t _krb5_servers_init(struct be_ctx *ctx,
}
if (port < 1 || port > 65535) {
- DEBUG(SSSDBG_CRIT_FAILURE, ("Illegal port number [%d].\n", port));
+ DEBUG(SSSDBG_CRIT_FAILURE, ("Illegal port number [%ld].\n", port));
ret = EINVAL;
goto done;
}