From f873d1c9287adf29c0fb01b539fd58d30d0bc7d3 Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Sat, 19 Oct 2013 11:23:20 -0700 Subject: [PATCH] remove and use "1" instead of "true". closes #3657 see #3642 for the change that caused this bug. --- crypt-gpgme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypt-gpgme.c b/crypt-gpgme.c index 3a8fb722..5181edb0 100644 --- a/crypt-gpgme.c +++ b/crypt-gpgme.c @@ -43,7 +43,6 @@ #include #include #include -#include /* for "true" */ #include @@ -4367,7 +4366,8 @@ static void init_common(void) #ifdef ENABLE_NLS gpgme_set_locale (NULL, LC_MESSAGES, setlocale (LC_MESSAGES, NULL)); #endif - has_run = true; + has_run = 1; /* note use of 1 here is intentional to avoid requiring "true" + to be defined. see #3657 */ } } -- 2.50.1