mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
allow newlines in the contents when doing -F "var=[contents]"
This commit is contained in:
parent
c323969bdd
commit
84406b3e2c
@ -767,7 +767,7 @@ static int formparse(char *input,
|
|||||||
contents = malloc(strlen(input));
|
contents = malloc(strlen(input));
|
||||||
contents[0] = '\000';
|
contents[0] = '\000';
|
||||||
|
|
||||||
if(1 <= sscanf(input, "%255[^=]=%[^\n]", name, contents)) {
|
if(1 <= sscanf(input, "%255[^=]=%s", name, contents)) {
|
||||||
/* the input was using the correct format */
|
/* the input was using the correct format */
|
||||||
contp = contents;
|
contp = contents;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user