Quote everything for consistency.

RFC 2068 got superseded by RFC 2616.
oldstable
Ferenc Wagner 2004-10-05 02:10:37 +00:00 committed by Alexandre Julliard
parent 9ed8857ffa
commit ffc30c808e
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ send_file (const char *name)
char *str;
int ret;
/* RFC 2068 */
/* RFC 2616 */
#define SEP "--8<--cut-here--8<--"
static const char head[] = "POST /submit HTTP/1.0\r\n"
"Host: test.winehq.org\r\n"
@ -123,7 +123,7 @@ send_file (const char *name)
"Content-Disposition: form-data; name=\"reportfile\"; filename=\"%s\"\r\n"
"Content-Type: application/octet-stream\r\n\r\n";
static const char body2[] = "\r\n--" SEP "\r\n"
"Content-Disposition: form-data; name=submit\r\n\r\n"
"Content-Disposition: form-data; name=\"submit\"\r\n\r\n"
"Upload File\r\n"
"--" SEP "--\r\n";