1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-19 00:52:46 +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-23 02:50:47 +00:00
parent ae4ef70783
commit ac6468d891
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2003-01-22 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.
2002-11-04 David Shaw <dshaw@jabberwocky.com> 2002-11-04 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c (send_key), gpgkeys_ldap.c (send_key): Properly * gpgkeys_hkp.c (send_key), gpgkeys_ldap.c (send_key): Properly

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;
} }