diff options
author | Yang Tse <yangsita@gmail.com> | 2013-07-24 16:43:13 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-07-24 16:46:24 +0200 |
commit | 4fad1943a256fcfbbb74603ba22fe7377e59e003 (patch) | |
tree | 534631327cf317970d0cf6dc093dfc73fa5ad435 /lib/ldap.c | |
parent | 4d346673a267c7111c667d5fe2962db09df506d4 (diff) | |
download | curl-4fad1943a256fcfbbb74603ba22fe7377e59e003.tar.gz |
string formatting: fix 15+ printf-style format strings
Diffstat (limited to 'lib/ldap.c')
-rw-r--r-- | lib/ldap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ldap.c b/lib/ldap.c index 833ffa445..235271578 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -260,7 +260,7 @@ static CURLcode Curl_ldap(struct connectdata *conn, bool *done) } server = ldapssl_init(conn->host.name, (int)conn->port, 1); if(server == NULL) { - failf(data, "LDAP local: Cannot connect to %s:%hu", + failf(data, "LDAP local: Cannot connect to %s:%ld", conn->host.name, conn->port); status = CURLE_COULDNT_CONNECT; goto quit; @@ -301,7 +301,7 @@ static CURLcode Curl_ldap(struct connectdata *conn, bool *done) } server = ldap_init(conn->host.name, (int)conn->port); if(server == NULL) { - failf(data, "LDAP local: Cannot connect to %s:%hu", + failf(data, "LDAP local: Cannot connect to %s:%ld", conn->host.name, conn->port); status = CURLE_COULDNT_CONNECT; goto quit; @@ -337,7 +337,7 @@ static CURLcode Curl_ldap(struct connectdata *conn, bool *done) else { server = ldap_init(conn->host.name, (int)conn->port); if(server == NULL) { - failf(data, "LDAP local: Cannot connect to %s:%hu", + failf(data, "LDAP local: Cannot connect to %s:%ld", conn->host.name, conn->port); status = CURLE_COULDNT_CONNECT; goto quit; |