diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-19 05:11:18 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-19 05:11:18 +0800 |
commit | d8fa73f1b70b8d7da8a374126a9c81eb87fe68a9 (patch) | |
tree | 5f8ec83e9f4fe78705be5a560646b4f664cf6abb /camel/camel.c | |
parent | feab0c308a0f5c9144817390f83332ad72312000 (diff) | |
download | gsoc2013-evolution-d8fa73f1b70b8d7da8a374126a9c81eb87fe68a9.tar.gz gsoc2013-evolution-d8fa73f1b70b8d7da8a374126a9c81eb87fe68a9.tar.zst gsoc2013-evolution-d8fa73f1b70b8d7da8a374126a9c81eb87fe68a9.zip |
make camel_shutdown() an atexit handler again
svn path=/trunk/; revision=26430
Diffstat (limited to 'camel/camel.c')
-rw-r--r-- | camel/camel.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/camel.c b/camel/camel.c index a3f4961076..f370d891d0 100644 --- a/camel/camel.c +++ b/camel/camel.c @@ -43,7 +43,7 @@ static int initialised = FALSE; -void +static void camel_shutdown (void) { void camel_operation_shutdown (void); @@ -123,6 +123,8 @@ camel_init (const char *configdir, gboolean nss_init) camel_object_unref (certdb); + g_atexit (camel_shutdown); + initialised = TRUE; return 0; |