mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-23 15:07:03 +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
e20701b7e5
commit
169f4365da
@ -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
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user