Commit aa21e42d authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

const fixes

parent 16215e80
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -792,7 +792,7 @@ CURLcode _ftp(struct connectdata *conn)
    int alen, plen;
    char portmsgbuf[4096], tmp[4096];

    char *mode[] = { "EPRT", "LPRT", "PORT", NULL };
    const char *mode[] = { "EPRT", "LPRT", "PORT", NULL };
    char **modep;

    /*
@@ -850,7 +850,7 @@ CURLcode _ftp(struct connectdata *conn)
      return CURLE_FTP_PORT_FAILED;
    }

    for (modep = mode; modep && *modep; modep++) {
    for (modep = (char *)mode; modep && *modep; modep++) {
      int lprtaf, eprtaf;

      switch (sa->sa_family) {
@@ -938,7 +938,6 @@ CURLcode _ftp(struct connectdata *conn)
	continue;
      } else
        break;
again:;
    }

    if (!*modep) {