From 68a626b30117bb7c40e3e3eedb8139f1085b8ca2 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Tue, 12 Aug 2008 16:15:37 -0400 Subject: [PATCH] unescape *all* colons, instead of just the first one in encoded user IDs --- src/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2