mirror of
https://github.com/curl/curl.git
synced 2026-08-24 13:33:33 +03:00
removed URL size restrictions
This commit is contained in:
parent
b2ad1f68cc
commit
42280e95bf
4 changed files with 24 additions and 6 deletions
|
|
@ -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] = ' ';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue