aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-session.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-07-25 15:46:06 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-07-25 15:46:06 +0800
commit6ea2a4da8b06dd138bc815b242d6670d7c003223 (patch)
treec6c40aca0b8f4deb9c03a3d54d6385b8de17e711 /mail/mail-session.c
parent6147ca54a454838e00dfa108db5b13ec10b9aa2f (diff)
downloadgsoc2013-evolution-6ea2a4da8b06dd138bc815b242d6670d7c003223.tar
gsoc2013-evolution-6ea2a4da8b06dd138bc815b242d6670d7c003223.tar.gz
gsoc2013-evolution-6ea2a4da8b06dd138bc815b242d6670d7c003223.tar.bz2
gsoc2013-evolution-6ea2a4da8b06dd138bc815b242d6670d7c003223.tar.lz
gsoc2013-evolution-6ea2a4da8b06dd138bc815b242d6670d7c003223.tar.xz
gsoc2013-evolution-6ea2a4da8b06dd138bc815b242d6670d7c003223.tar.zst
gsoc2013-evolution-6ea2a4da8b06dd138bc815b242d6670d7c003223.zip
Update to take argc and argv arguments since this is the new definition
2002-07-25 Jeffrey Stedfast <fejj@ximian.com> * mail-ops.c (mail_execute_shell_command): Update to take argc and argv arguments since this is the new definition for the CamelFilterDriverShellFunc. * mail-session.c (main_get_filter_driver): Updated for the renamed function. svn path=/trunk/; revision=17585
Diffstat (limited to 'mail/mail-session.c')
-rw-r--r--mail/mail-session.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-session.c b/mail/mail-session.c
index 2fb0628301..8a1d735ef0 100644
--- a/mail/mail-session.c
+++ b/mail/mail-session.c
@@ -19,6 +19,7 @@
*
*/
+
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
@@ -855,7 +856,7 @@ main_get_filter_driver (CamelSession *session, const char *type, CamelException
camel_filter_driver_set_logfile (driver, ms->filter_logfile);
}
- camel_filter_driver_set_shell_exec_func (driver, mail_execute_shell_command, NULL);
+ camel_filter_driver_set_shell_func (driver, mail_execute_shell_command, NULL);
camel_filter_driver_set_play_sound_func (driver, session_play_sound, NULL);
camel_filter_driver_set_system_beep_func (driver, session_system_beep, NULL);