diff options
Diffstat (limited to 'Echolot')
-rw-r--r-- | Echolot/Pinger/CPunk.pm | 4 | ||||
-rw-r--r-- | Echolot/Stats.pm | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Echolot/Pinger/CPunk.pm b/Echolot/Pinger/CPunk.pm index 3265d26..1d44759 100644 --- a/Echolot/Pinger/CPunk.pm +++ b/Echolot/Pinger/CPunk.pm @@ -1,7 +1,7 @@ package Echolot::Pinger::CPunk; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: CPunk.pm,v 1.6 2002/07/22 02:18:30 weasel Exp $ +# $Id: CPunk.pm,v 1.7 2002/09/05 15:12:01 weasel Exp $ # =pod @@ -71,7 +71,7 @@ sub encrypt_to($$$$) { #cluck("GnuPG returned something in stderr: '$stderr' while adding key for '$recipient'; returning\n"), #return undef; ($status =~ /^^\[GNUPG:\] IMPORTED $recipient /m) or - cluck("GnuPG status '$status' didn't indicate key for '$recipient' was imporeted correctly. Returning\n"), + cluck("GnuPG status '$status' didn't indicate key for '$recipient' was imported correctly. Returning\n"), return undef; diff --git a/Echolot/Stats.pm b/Echolot/Stats.pm index 9b8ae81..160d451 100644 --- a/Echolot/Stats.pm +++ b/Echolot/Stats.pm @@ -1,7 +1,7 @@ package Echolot::Stats; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Stats.pm,v 1.32 2002/09/04 01:47:01 weasel Exp $ +# $Id: Stats.pm,v 1.33 2002/09/05 15:12:01 weasel Exp $ # =pod @@ -684,9 +684,9 @@ sub build_pgpring_type($$$$) { cluck("GnuPG returned something in stdout '$stdout' while adding key for '$addr': So what?\n"); unless ($status =~ /^^\[GNUPG:\] IMPORTED /m) { if ($status =~ /^^\[GNUPG:\] IMPORT_RES /m) { - cluck("GnuPG status '$status' indicates more than one key for '$addr' imporeted. Ignoring.\n"); + cluck("GnuPG status '$status' indicates more than one key for '$addr' imported. Ignoring.\n"); } else { - cluck("GnuPG status '$status' didn't indicate key for '$addr' was imporeted correctly. Ignoring.\n"); + cluck("GnuPG status '$status' didn't indicate key for '$addr' was imported correctly. Ignoring.\n"); }; }; $keyids->{$final_keyid} = $remailer->{'showit'}; |