Description: Patch which allows ffproxy to handle multibytes characters in headers
Author: Paul Merrill <napalminc@gmail.com>
Bug-Debian: http://bugs.debian.org/661425
Last-Update: 2012-03-24
--- a/request.c
+++ b/request.c
@@ -221,7 +221,7 @@
 {
 	char            c;
 
-	if (read(s, &c, 1) != 1 || c < 1)
+	if (read(s, &c, 1) != 1 || c == 0)
 		return -1;
 	else
 		return c;
