mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01: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:
parent
ae4ef70783
commit
ac6468d891
@ -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>
|
||||
|
||||
* gpgkeys_hkp.c (send_key), gpgkeys_ldap.c (send_key): Properly
|
||||
|
@ -44,7 +44,7 @@ while(<STDIN>)
|
||||
{
|
||||
last if($_ eq "\n");
|
||||
|
||||
if(/^COMMAND (\w+)/)
|
||||
if(/^COMMAND (\S+)/)
|
||||
{
|
||||
$command=$1;
|
||||
}
|
||||
@ -59,7 +59,7 @@ while(<STDIN>)
|
||||
$program=$1;
|
||||
}
|
||||
|
||||
if(/^OPTION (\w+)/)
|
||||
if(/^OPTION (\S+)/)
|
||||
{
|
||||
if($1=~/^verbose$/i)
|
||||
{
|
||||
@ -175,7 +175,7 @@ if($command=~/send/i)
|
||||
|
||||
while(<STDIN>)
|
||||
{
|
||||
if(/^KEY (\w+) BEGIN$/)
|
||||
if(/^KEY (\S+) BEGIN$/)
|
||||
{
|
||||
$key=$1;
|
||||
last;
|
||||
@ -184,7 +184,7 @@ if($command=~/send/i)
|
||||
|
||||
while(<STDIN>)
|
||||
{
|
||||
if(/^KEY \w+ END$/)
|
||||
if(/^KEY \S+ END$/)
|
||||
{
|
||||
last;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user