Oops. Headers work better when named right.

svn:r6707
This commit is contained in:
Nick Mathewson 2006-07-01 21:51:21 +00:00
parent 369d479c7a
commit 9fce316d1c

View File

@ -1282,7 +1282,7 @@ write_http_response_header(connection_t *conn, ssize_t length,
}
if (length >= 0) {
tor_snprintf(cp, sizeof(tmp)-(cp-tmp),
"Content-Encoding: %ld\r\n", (long)length);
"Content-Length: %ld\r\n", (long)length);
cp += strlen(cp);
}
if (sizeof(tmp)-(cp-tmp) > 3)