diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-08-12 16:15:37 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-08-12 16:15:37 -0400 |
commit | 68a626b30117bb7c40e3e3eedb8139f1085b8ca2 (patch) | |
tree | 303478ceff8c1bf13c65fb880cccaea2fa68c0cd | |
parent | be8136a52f372488802ca50ad4038e3dce52dc17 (diff) |
unescape *all* colons, instead of just the first one in encoded user IDs
-rw-r--r-- | src/common | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |