]> git.pld-linux.org Git - packages/lighttpd.git/blame - lighttpd-pathinfo.patch
- added pathinfo patch
[packages/lighttpd.git] / lighttpd-pathinfo.patch
CommitLineData
c3c86b46
ER
1--- ../src/buffer.c~ 2005-01-29 13:41:52.000000000 +0200
2+++ ../src/buffer.c 2005-02-04 23:24:30.000000000 +0200
3@@ -978,7 +978,7 @@
4 low = hex2int(*(src + 2));
5 if (low != 0xFF) {
6 high = (high << 4) | low;
7- if (high < 32 || high > 126)
8+ if (high < 32 || high == 127)
9 high = '_';
10 *dst = high;
11 src += 2;
This page took 0.19464 seconds and 4 git commands to generate.