diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-06-30 12:04:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-06-30 12:04:37 +0000 |
commit | 8efa6f407d18caae93a3fa3dd3760fc51cd46760 (patch) | |
tree | ff964a4d2490f28d747dcb952fa4aa969f60552f | |
parent | 85bd4621dbc183def01bbdb7567dbec789e00bb3 (diff) |
I think 1024 bytes is enough for even most ipv6 addresses :-)
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1066,7 +1066,7 @@ CURLcode ftp_use_port(struct connectdata *conn) struct sockaddr *sa=(struct sockaddr *)&ss; unsigned char *ap; unsigned char *pp; - char portmsgbuf[4096], tmp[4096]; + char portmsgbuf[1024], tmp[1024]; const char *mode[] = { "EPRT", "LPRT", "PORT", NULL }; char **modep; |