aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2001-04-04 04:35:44 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-04-04 04:35:44 +0800
commit2a8c70e1d728779346f618bf1bf936e757c32756 (patch)
treeb621f1fb2d0823d31b8e5ae796aec00fe0b7412c
parent1c32ce15c29c06507f7ff3ab6a1aa26b7bbc024d (diff)
downloadgsoc2013-evolution-2a8c70e1d728779346f618bf1bf936e757c32756.tar
gsoc2013-evolution-2a8c70e1d728779346f618bf1bf936e757c32756.tar.gz
gsoc2013-evolution-2a8c70e1d728779346f618bf1bf936e757c32756.tar.bz2
gsoc2013-evolution-2a8c70e1d728779346f618bf1bf936e757c32756.tar.lz
gsoc2013-evolution-2a8c70e1d728779346f618bf1bf936e757c32756.tar.xz
gsoc2013-evolution-2a8c70e1d728779346f618bf1bf936e757c32756.tar.zst
gsoc2013-evolution-2a8c70e1d728779346f618bf1bf936e757c32756.zip
don't check the global variable, check the onje passed in. this really doesn't matter the way the code works, but it's stll incorrect
svn path=/trunk/; revision=9138
-rw-r--r--mail/openpgp-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/openpgp-utils.c b/mail/openpgp-utils.c
index c68797c398..4489f463ec 100644
--- a/mail/openpgp-utils.c
+++ b/mail/openpgp-utils.c
@@ -67,7 +67,7 @@ static PgpType pgp_type = PGP_TYPE_NONE;
static const gchar *
pgp_get_type_as_string (PgpType type)
{
- switch (pgp_type) {
+ switch (type) {
case PGP_TYPE_GPG:
return "GnuPG";
case PGP_TYPE_PGP5: