From 91f9892814fc2e323829f1cbc0f3da31eaacb89e Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 29 Dec 2013 17:39:04 +0200 Subject: [PATCH] * mu: fix boolean params --- mu/mu-config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu/mu-config.h b/mu/mu-config.h index 441b81cf..a45072a5 100644 --- a/mu/mu-config.h +++ b/mu/mu-config.h @@ -174,8 +174,8 @@ struct _MuConfig { mode_t dirmode; /* mode for the created maildir */ /* options for extracting parts */ - gboolean *save_all; /* extract all parts */ - gboolean *save_attachments; /* extract all attachment parts */ + gboolean save_all; /* extract all parts */ + gboolean save_attachments; /* extract all attachment parts */ gchar *parts; /* comma-sep'd list of parts * to save / open */ gchar *targetdir; /* where to save the attachments */