removed URL size restrictions

This commit is contained in:
Daniel Stenberg
2000-11-20 08:53:21 +00:00
parent b2ad1f68cc
commit 42280e95bf
4 changed files with 24 additions and 6 deletions

View File

@@ -233,7 +233,7 @@ CURLcode dict(struct connectdata *conn)
int i;
ppath++;
for (i = 0; (i < URL_MAX_LENGTH) && (ppath[i]); i++) {
for (i = 0; ppath[i]; i++) {
if (ppath[i] == ':')
ppath[i] = ' ';
}