Commit 17b78438 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

kris@freebsd.org fixed a few bad format strings

parent e3031fdd
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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);