diff options
author | Peter Palfrader <peter@palfrader.org> | 2004-04-25 17:10:35 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2004-04-25 17:10:35 +0000 |
commit | a01d76821f7d1c0d7e3c8aa6cc7f97105722f4fc (patch) | |
tree | 39754791de49776e42c7a4840636c741ee965459 /Echolot/Stats.pm | |
parent | 593244cf25930924ebee376597904bdb430d51ad (diff) |
prefix readwrite_gpg with Echolot::Tools:: to qualify them
Diffstat (limited to 'Echolot/Stats.pm')
-rw-r--r-- | Echolot/Stats.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Echolot/Stats.pm b/Echolot/Stats.pm index 0d97783..5fc0134 100644 --- a/Echolot/Stats.pm +++ b/Echolot/Stats.pm @@ -861,7 +861,7 @@ sub build_pgpring_type($$$$) { commands => [ '--import' ], command_args => [qw{--no-options --no-secmem-warning --no-default-keyring --fast-list-mode --keyring}, $keyring, '--', '-' ], handles => $handles ); - my ($stdout, $stderr, $status) = readwrite_gpg($key{'key'}, $stdin_fh, $stdout_fh, $stderr_fh, $status_fh); + my ($stdout, $stderr, $status) = Echolot::Tools::readwrite_gpg($key{'key'}, $stdin_fh, $stdout_fh, $stderr_fh, $status_fh); waitpid $pid, 0; ($stdout eq '') or @@ -889,7 +889,7 @@ sub build_pgpring_export($$$$) { commands => [ '--export' ], command_args => [qw{--no-options --no-secmem-warning --no-default-keyring --keyring}, $keyring, @$keyids ], handles => $handles ); - my ($stdout, $stderr, $status) = readwrite_gpg('', $stdin_fh, $stdout_fh, $stderr_fh, $status_fh); + my ($stdout, $stderr, $status) = Echolot::Tools::readwrite_gpg('', $stdin_fh, $stdout_fh, $stderr_fh, $status_fh); waitpid $pid, 0; open (F, ">$file") or |