diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-08-18 15:09:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-08-18 15:09:50 +0000 |
commit | af352740db00a8be048110a1322eae08c7ab24e4 (patch) | |
tree | 82009cb2226e119844ef97a1575d544858f9ab05 /lib | |
parent | 4e35b4387cc38d4722285c3b5c0393c37622c815 (diff) |
increased the buffer size used for name lookups
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -538,7 +538,7 @@ CURLcode _ftp(struct connectdata *conn) /* for the ftp PORT mode */ int portsock=-1; struct sockaddr_in serv_addr; - char hostent_buf[512]; + char hostent_buf[8192]; #if defined (HAVE_INET_NTOA_R) char ntoa_buf[64]; #endif |