From 00e24678854acd95c3cac1e49c8aafb6010dfdb9 Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Mon, 9 Jul 2012 23:59:34 +0200 Subject: [PATCH] Improved portability of mhsend(1). Thanks to Dennis Herrmann for the bug report and patch. --- uip/mhsign.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uip/mhsign.sh b/uip/mhsign.sh index ac56bc2..e6f54b3 100755 --- a/uip/mhsign.sh +++ b/uip/mhsign.sh @@ -22,7 +22,7 @@ if [ "x$userid" = "x" ] ; then userid="`mhparam pgpkey`" fi userid="`gpg --list-secret-keys --with-colons 2>/dev/null | - sed -n '/^sec/{p;q}' | cut -d: -f5`" + sed -n '/^sec/{p;q;}' | cut -d: -f5`" if [ "x$userid" = x ] ; then echo "No secret key found" >&2 exit 1 @@ -89,7 +89,7 @@ lookupkeyring() { if [ $? != 0 ] ; then return 1 fi - echo "$key" | sed -n '/^pub/{p;q}' | cut -d: -f5 + echo "$key" | sed -n '/^pub/{p;q;}' | cut -d: -f5 return 0 } -- 1.7.10.4