From 2a8c70e1d728779346f618bf1bf936e757c32756 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 3 Apr 2001 20:35:44 +0000 Subject: 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 --- mail/openpgp-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mail/openpgp-utils.c') 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: -- cgit v1.2.3