aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-11-10 07:47:34 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-11-10 07:47:34 +0000
commit9273d06df99648652b98adf86d7562811eb323b8 (patch)
treec27fec60bd50ed5590f149dec8c2c6ae3bbeec48 /src/main.c
parent559f0d61388eab404f03a1c673b3c322e2cafa07 (diff)
check if OpenPGP protocol is available on startup.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@733 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 4834cb1d..d975339a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -626,7 +626,8 @@ static void idle_function_for_gpgme(void)
static void check_gpg(void)
{
#if USE_GPGME
- if (gpgme_check_version("0.4.5")) {
+ if (gpgme_check_version("0.4.5") &&
+ !gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP)) {
/* Also does some gpgme init */
gpgme_engine_info_t engineInfo;