summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-08-12 16:15:37 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-08-12 16:15:37 -0400
commit68a626b30117bb7c40e3e3eedb8139f1085b8ca2 (patch)
tree303478ceff8c1bf13c65fb880cccaea2fa68c0cd /src
parentbe8136a52f372488802ca50ad4038e3dce52dc17 (diff)
unescape *all* colons, instead of just the first one in encoded user IDs
Diffstat (limited to 'src')
-rw-r--r--src/common2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common b/src/common
index b4e786b..ff1a220 100644
--- a/src/common
+++ b/src/common
@@ -68,7 +68,7 @@ check_capability() {
# character
# FIXME: undo all escape character translation in with-colons gpg output
unescape() {
- echo "$1" | sed 's/\\x3a/:/'
+ echo "$1" | sed 's/\\x3a/:/g'
}
# remove all lines with specified string from specified file