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/Conf.pm | |
parent | 593244cf25930924ebee376597904bdb430d51ad (diff) |
prefix readwrite_gpg with Echolot::Tools:: to qualify them
Diffstat (limited to 'Echolot/Conf.pm')
-rw-r--r-- | Echolot/Conf.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Echolot/Conf.pm b/Echolot/Conf.pm index abe69c8..f6e2221 100644 --- a/Echolot/Conf.pm +++ b/Echolot/Conf.pm @@ -365,7 +365,7 @@ sub parse_cpunk_key($$$) { commands => [qw{--with-colons}], command_args => [qw{--no-options --no-secmem-warning --no-default-keyring --fast-list-mode}], handles => $handles ); - my ($stdout, $stderr, $status) = readwrite_gpg($key, $stdin_fh, $stdout_fh, $stderr_fh, $status_fh); + my ($stdout, $stderr, $status) = Echolot::Tools::readwrite_gpg($key, $stdin_fh, $stdout_fh, $stderr_fh, $status_fh); waitpid $pid, 0; ($stderr eq '') or |