1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-16 00:29:50 +02:00

* gpgkeys_mailto.in: Fix regexp to work properly if the "keyid" is not a

keyid, but rather a text string from the user ID.
This commit is contained in:
David Shaw 2003-01-29 23:14:29 +00:00
parent e20701b7e5
commit 169f4365da
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2003-01-29 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_mailto.in: Fix regexp to work properly if the "keyid" is
not a keyid, but rather a text string from the user ID.
2003-01-06 David Shaw <dshaw@jabberwocky.com> 2003-01-06 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c (get_key): Use options=mr when getting a key so * gpgkeys_hkp.c (get_key): Use options=mr when getting a key so

View File

@ -44,7 +44,7 @@ while(<STDIN>)
{ {
last if($_ eq "\n"); last if($_ eq "\n");
if(/^COMMAND (\w+)/) if(/^COMMAND (\S+)/)
{ {
$command=$1; $command=$1;
} }
@ -59,7 +59,7 @@ while(<STDIN>)
$program=$1; $program=$1;
} }
if(/^OPTION (\w+)/) if(/^OPTION (\S+)/)
{ {
if($1=~/^verbose$/i) if($1=~/^verbose$/i)
{ {
@ -175,7 +175,7 @@ if($command=~/send/i)
while(<STDIN>) while(<STDIN>)
{ {
if(/^KEY (\w+) BEGIN$/) if(/^KEY (\S+) BEGIN$/)
{ {
$key=$1; $key=$1;
last; last;
@ -184,7 +184,7 @@ if($command=~/send/i)
while(<STDIN>) while(<STDIN>)
{ {
if(/^KEY \w+ END$/) if(/^KEY \S+ END$/)
{ {
last; last;
} }