Loading src/main.c +7 −2 Original line number Diff line number Diff line Loading @@ -1210,8 +1210,13 @@ static int formparse(struct Configurable *config, specified and if not we simply assume that it is text that the user wants included in the type and include that too up to the next zero or semicolon. */ if((*sep==';') && !curlx_strnequal(";filname=", sep, 9)) sep = strchr(sep+1, ';'); if((*sep==';') && !curlx_strnequal(";filename=", sep, 10)) { sep2 = strchr(sep+1, ';'); if (sep2) sep = sep2; else sep = sep+strlen(sep); /* point to end of string */ } if(*sep) { *sep=0; /* zero terminate type string */ Loading tests/data/test173 +10 −3 Original line number Diff line number Diff line <testcase> <info> <keywords> HTTP HTTP POST </keywords> </info> # Server-side <reply> <data> Loading @@ -21,7 +28,7 @@ http HTTP RFC1867-formpost a file from stdin with "faked" filename </name> <command> http://%HOSTIP:%HTTPPORT/we/want/173 -F field1=contents1 -F "fileupload=@-;filename=/dev/null" http://%HOSTIP:%HTTPPORT/we/want/173 -F field1=contents1 -F "fileupload=@-;filename=/dev/null;type=text/x-null;format=x-curl" </command> <stdin> Loading @@ -46,7 +53,7 @@ POST /we/want/173 HTTP/1.1 User-Agent: curl/7.12.1-CVS (i686-pc-linux-gnu) libcurl/7.12.1-CVS OpenSSL/0.9.6b ipv6 zlib/1.1.4 GSS libidn/0.4.6 Host: %HOSTIP:%HTTPPORT Accept: */* Content-Length: 359 Content-Length: 360 Expect: 100-continue Content-Type: multipart/form-data; boundary=----------------------------5dbea401cd8c Loading @@ -56,7 +63,7 @@ Content-Disposition: form-data; name="field1" contents1 ------------------------------5dbea401cd8c Content-Disposition: form-data; name="fileupload"; filename="/dev/null" Content-Type: application/octet-stream Content-Type: text/x-null;format=x-curl line1 line2 Loading tests/data/test39 +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ http HTTP RFC1867-type formposting with filename= and type= </name> <command> http://%HOSTIP:%HTTPPORT/we/want/39 -F name=daniel -F tool=curl --form-string "str1=@literal" --form-string "str2=<verbatim;type=xxx/yyy" -F "file=@log/test39.txt;filename=fakerfile;type=moo/foobar" -F file2=@log/test39.txt http://%HOSTIP:%HTTPPORT/we/want/39 -F name=daniel -F tool=curl --form-string "str1=@literal" --form-string "str2=<verbatim;type=xxx/yyy" -F "file=@log/test39.txt;type=moo/foobar;filename=fakerfile" -F file2=@log/test39.txt </command> # We create this file before the command is invoked! <file name="log/test39.txt"> Loading Loading
src/main.c +7 −2 Original line number Diff line number Diff line Loading @@ -1210,8 +1210,13 @@ static int formparse(struct Configurable *config, specified and if not we simply assume that it is text that the user wants included in the type and include that too up to the next zero or semicolon. */ if((*sep==';') && !curlx_strnequal(";filname=", sep, 9)) sep = strchr(sep+1, ';'); if((*sep==';') && !curlx_strnequal(";filename=", sep, 10)) { sep2 = strchr(sep+1, ';'); if (sep2) sep = sep2; else sep = sep+strlen(sep); /* point to end of string */ } if(*sep) { *sep=0; /* zero terminate type string */ Loading
tests/data/test173 +10 −3 Original line number Diff line number Diff line <testcase> <info> <keywords> HTTP HTTP POST </keywords> </info> # Server-side <reply> <data> Loading @@ -21,7 +28,7 @@ http HTTP RFC1867-formpost a file from stdin with "faked" filename </name> <command> http://%HOSTIP:%HTTPPORT/we/want/173 -F field1=contents1 -F "fileupload=@-;filename=/dev/null" http://%HOSTIP:%HTTPPORT/we/want/173 -F field1=contents1 -F "fileupload=@-;filename=/dev/null;type=text/x-null;format=x-curl" </command> <stdin> Loading @@ -46,7 +53,7 @@ POST /we/want/173 HTTP/1.1 User-Agent: curl/7.12.1-CVS (i686-pc-linux-gnu) libcurl/7.12.1-CVS OpenSSL/0.9.6b ipv6 zlib/1.1.4 GSS libidn/0.4.6 Host: %HOSTIP:%HTTPPORT Accept: */* Content-Length: 359 Content-Length: 360 Expect: 100-continue Content-Type: multipart/form-data; boundary=----------------------------5dbea401cd8c Loading @@ -56,7 +63,7 @@ Content-Disposition: form-data; name="field1" contents1 ------------------------------5dbea401cd8c Content-Disposition: form-data; name="fileupload"; filename="/dev/null" Content-Type: application/octet-stream Content-Type: text/x-null;format=x-curl line1 line2 Loading
tests/data/test39 +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ http HTTP RFC1867-type formposting with filename= and type= </name> <command> http://%HOSTIP:%HTTPPORT/we/want/39 -F name=daniel -F tool=curl --form-string "str1=@literal" --form-string "str2=<verbatim;type=xxx/yyy" -F "file=@log/test39.txt;filename=fakerfile;type=moo/foobar" -F file2=@log/test39.txt http://%HOSTIP:%HTTPPORT/we/want/39 -F name=daniel -F tool=curl --form-string "str1=@literal" --form-string "str2=<verbatim;type=xxx/yyy" -F "file=@log/test39.txt;type=moo/foobar;filename=fakerfile" -F file2=@log/test39.txt </command> # We create this file before the command is invoked! <file name="log/test39.txt"> Loading