summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2010-11-23 05:39:55 +0100
committerJonas Smedegaard <dr@jones.dk>2010-11-23 05:39:55 +0100
commit6691d89275bd5251661d307bd5b5cc9ce7699b16 (patch)
tree2c3fc45fc67cf746f9f46b75c632bcd40c86878c
parent0e1129a7c0b013a7dc4c6d47c8803acb80587d5a (diff)
Avoid lowercasing in uriunescape().
-rwxr-xr-xlocalkannel-dispatch2
1 files changed, 1 insertions, 1 deletions
diff --git a/localkannel-dispatch b/localkannel-dispatch
index 26edfb1..7378534 100755
--- a/localkannel-dispatch
+++ b/localkannel-dispatch
@@ -38,7 +38,7 @@ uriunescape() {
if [ 0 = "$urldecode" ]; then
echo "$@"
else
- echo "$@" | perl -e 'use URI::Escape; print lc(uri_unescape(<STDIN>));'
+ echo "$@" | perl -e 'use URI::Escape; print uri_unescape(<STDIN>);'
fi
}