From: Michael Elkins Date: Sat, 19 Oct 2013 18:23:20 +0000 (-0700) Subject: remove and use "1" instead of "true". closes #3657 X-Git-Tag: neomutt-20160307~137^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93e3ff89f59faf01a4c0765070fdaab66ddcd097;p=neomutt remove and use "1" instead of "true". closes #3657 see #3642 for the change that caused this bug. --- diff --git a/crypt-gpgme.c b/crypt-gpgme.c index 3a8fb7226..5181edb09 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 */ } }