summaryrefslogtreecommitdiff
path: root/Echolot/Stats.pm
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-01-02 21:24:32 +0000
committerPeter Palfrader <peter@palfrader.org>2003-01-02 21:24:32 +0000
commit6665b96320392f0829892137feb21df759522c68 (patch)
tree995017801e7329094988fbe1540575c23a219eb9 /Echolot/Stats.pm
parent566cc99380a23a0f1ea6b2018f6fdbc3dffe698d (diff)
Always use --no-secmem-warning with GnuPG calls
Diffstat (limited to 'Echolot/Stats.pm')
-rw-r--r--Echolot/Stats.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Echolot/Stats.pm b/Echolot/Stats.pm
index 7fa46bd..fb9e10d 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.36 2002/12/18 17:31:00 weasel Exp $
+# $Id: Stats.pm,v 1.37 2003/01/02 21:24:32 weasel Exp $
#
=pod
@@ -693,7 +693,7 @@ sub build_pgpring_type($$$$) {
);
my $pid = $GnuPG->wrap_call(
commands => [ '--import' ],
- command_args => [qw{--no-options --no-default-keyring --fast-list-mode --keyring}, $keyring, '--', '-' ],
+ command_args => [qw{--no-options --no-secmem-warning --no-default-keyring --fast-list-mode --keyring}, $keyring, '--', '-' ],
handles => $handles );
print $stdin_fh $key{'key'};
close($stdin_fh);
@@ -737,7 +737,7 @@ sub build_pgpring_export($$$$) {
);
my $pid = $GnuPG->wrap_call(
commands => [ '--export' ],
- command_args => [qw{--no-options --no-default-keyring --keyring}, $keyring, @$keyids ],
+ command_args => [qw{--no-options --no-secmem-warning --no-default-keyring --keyring}, $keyring, @$keyids ],
handles => $handles );
close($stdin_fh);