diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-12 07:44:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-12 07:44:22 +0000 |
commit | 17b784381ec4b0739070e6ce7237ddb58d8a5381 (patch) | |
tree | 5f10f183296b47ca6b53e3e04a8214dfda77dfea /lib | |
parent | e3031fddb9d90ea00fe95b3da6225ccffdc13b41 (diff) |
kris@freebsd.org fixed a few bad format strings
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1070,13 +1070,13 @@ CURLcode ftp_use_port(struct connectdata *conn) } freeaddrinfo(res); if (portsock < 0) { - failf(data, strerror(errno)); + failf(data, "%s", strerror(errno)); return CURLE_FTP_PORT_FAILED; } sslen = sizeof(ss); if (getsockname(portsock, sa, &sslen) < 0) { - failf(data, strerror(errno)); + failf(data, "%s", strerror(errno)); return CURLE_FTP_PORT_FAILED; } @@ -1373,7 +1373,7 @@ CURLcode ftp_use_pasv(struct connectdata *conn) for (modeoff = (data->set.ftp_use_epsv?0:1); mode[modeoff]; modeoff++) { - result = Curl_ftpsendf(conn, mode[modeoff]); + result = Curl_ftpsendf(conn, "%s", mode[modeoff]); if(result) return result; nread = Curl_GetFTPResponse(buf, conn, &ftpcode); |