Skip to content

Commit

Permalink
- fix for fix... sry
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3084 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
karlchenofhell committed Dec 16, 2006
1 parent 6118fb7 commit d30932c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/de/anomic/http/httpd.java
Expand Up @@ -769,11 +769,11 @@ private static String parseArg(String s) {
} else if (s.charAt(pos) == '%') {
// start change by [FB]: added UTF-escapes
if (s.charAt(pos + 1) == 'u') { // UTF-16 escape
pos += 6;
baos.write(Integer.parseInt(s.substring(pos + 2, pos + 6), 16));
pos += 6;
} else { // normal escape
pos += 3;
baos.write(Integer.parseInt(s.substring(pos + 1, pos + 3), 16));
pos += 3;
}
// end change by [FB]
} else {
Expand Down

0 comments on commit d30932c

Please sign in to comment.