OSDN Git Service

fix.
authorvisor <visor@users.sourceforge.jp>
Fri, 13 Jan 2012 12:33:48 +0000 (21:33 +0900)
committervisor <visor@users.sourceforge.jp>
Fri, 13 Jan 2012 12:33:48 +0000 (21:33 +0900)
lib/util_string.cc

index c388ecb..c315dba 100644 (file)
@@ -268,7 +268,7 @@ static ustring  percentEncode (const ustring& text, uregex& re) {
 }
 
 ustring  urlencode (const ustring& url) {
-    static uregex  re ("(\\x00)|([^a-zA-Z0-9_.,/\x81-\xff-])");
+    static uregex  re ("(\\x00)|([^a-zA-Z0-9_.,/\x80-\xff-])");
     
     return percentEncode (url, re);
 }