diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-02-16 10:49:22 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-02-16 10:49:22 +0800 |
commit | 294158b26df37646ebedc9990c950ba2017053a4 (patch) | |
tree | 51b08d7044294f1dfd6e609ad82e630903eb727e /mail | |
parent | 7ac8a9c5e8bc272a75bed0c2509b525b907753ba (diff) | |
download | gsoc2013-evolution-294158b26df37646ebedc9990c950ba2017053a4.tar gsoc2013-evolution-294158b26df37646ebedc9990c950ba2017053a4.tar.gz gsoc2013-evolution-294158b26df37646ebedc9990c950ba2017053a4.tar.bz2 gsoc2013-evolution-294158b26df37646ebedc9990c950ba2017053a4.tar.lz gsoc2013-evolution-294158b26df37646ebedc9990c950ba2017053a4.tar.xz gsoc2013-evolution-294158b26df37646ebedc9990c950ba2017053a4.tar.zst gsoc2013-evolution-294158b26df37646ebedc9990c950ba2017053a4.zip |
reverse the order of some command-line flags for verify
svn path=/trunk/; revision=8248
Diffstat (limited to 'mail')
-rw-r--r-- | mail/openpgp-utils.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/openpgp-utils.c b/mail/openpgp-utils.c index 9222739bc9..8046ddc782 100644 --- a/mail/openpgp-utils.c +++ b/mail/openpgp-utils.c @@ -1070,15 +1070,15 @@ openpgp_verify (const gchar *in, gint inlen, const gchar *sigin, gint siglen, Ca argv[i++] = "--verify"; - if (sigin != NULL && siglen) - argv[i++] = sigfile; - - argv[i++] = "-"; - argv[i++] = "--no-tty"; /*argv[i++] = "--verbose";*/ /*argv[i++] = "--yes";*/ /*argv[i++] = "--batch";*/ + + if (sigin != NULL && siglen) + argv[i++] = sigfile; + + argv[i++] = "-"; break; case PGP_TYPE_PGP5: argv[i++] = "pgpv"; |