From bee4ad4ba0b9c2fccbc2be1a5a9092d5030914b2 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Mon, 22 Jan 2007 02:41:09 +0000 Subject: Now allow * in torrents --- scan_urlencoded_query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scan_urlencoded_query.c b/scan_urlencoded_query.c index 223a4ad..b255811 100644 --- a/scan_urlencoded_query.c +++ b/scan_urlencoded_query.c @@ -11,7 +11,7 @@ mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" we add '%' to the matrix to not stop at encoded chars. */ -static const unsigned char reserved_matrix[] = { 0xA2, 0x63, 0xFF, 0x03, 0xFE, 0xFF, 0xFF, 0x87, 0xFE, 0xFF, 0xFF, 0x47}; +static const unsigned char reserved_matrix[] = { 0xA2, 0x67, 0xFF, 0x03, 0xFE, 0xFF, 0xFF, 0x87, 0xFE, 0xFF, 0xFF, 0x47}; static int is_unreserved( unsigned char c ) { if( ( c <= 32 ) || ( c >= 127 ) ) return 0; return 1&(reserved_matrix[(c-32)>>3]>>(c&7)); } -- cgit v1.2.3