X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=main.c;h=5e589af7b3401cf0da6a8e3bd4dcc6a6336601b4;hp=d21f9ee336730411c6c5e180f985da72c4f8a325;hb=a552eb852c1d02cedb0c6517603ce44a219e3110;hpb=7110db82d9748096f6f2dfd5034e489622bd3887 diff --git a/main.c b/main.c index d21f9ee..5e589af 100644 --- a/main.c +++ b/main.c @@ -32,6 +32,7 @@ #include "sort.h" #include "keymap.h" #include "mutt_idna.h" +#include "mutt_sasl.h" #ifdef HAVE_GETOPT_H #include @@ -57,8 +58,6 @@ extern int optind; #include #elif defined(HAVE_GDBM) #include -#elif defined(HAVE_DB4) -#include #endif #endif @@ -176,9 +175,6 @@ static void show_version (void) printf (" qdbm %s\n", dpversion); #elif defined(HAVE_GDBM) printf (" gdbm %s\n", gdbm_version); -#elif defined(HAVE_DB4) - printf (" DB4 %d.%d.%d\n", DB_VERSION_MAJOR, DB_VERSION_MINOR, - DB_VERSION_PATCH); #endif #endif @@ -804,5 +800,6 @@ int main (int argc, char **argv) } luaM_shutdown(); + mutt_sasl_shutdown(); exit (0); }