diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-16 00:02:40 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-16 00:02:40 +0800 |
commit | 0e6bca76165008d39acfffd17216053f3b004e8d (patch) | |
tree | f372d712916cadda635f1c955de39f80f61274f9 /shell/main.c | |
parent | babacb9101cf739612cb8079f3dd936a53c5d63e (diff) | |
download | gsoc2013-evolution-0e6bca76165008d39acfffd17216053f3b004e8d.tar.gz gsoc2013-evolution-0e6bca76165008d39acfffd17216053f3b004e8d.tar.zst gsoc2013-evolution-0e6bca76165008d39acfffd17216053f3b004e8d.zip |
kill the correct binary, tidy includes
2004-01-15 JP Rosevear <jpr@ximian.com>
* main.c (kill_dataserver): kill the correct binary, tidy includes
svn path=/trunk/; revision=24243
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/main.c b/shell/main.c index 6fc007c6e8..e3eff9b1e9 100644 --- a/shell/main.c +++ b/shell/main.c @@ -20,7 +20,9 @@ * Author: Ettore Perazzoli */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif #include "e-util/e-dialog-utils.h" #include "e-util/e-gtk-utils.h" @@ -28,7 +30,6 @@ #include "e-icon-factory.h" #include "e-shell-constants.h" -#include "e-shell-window.h" /* FIXME */ #include "e-shell.h" @@ -178,7 +179,7 @@ kill_dataserver (void) g_print ("(Killing old version of evolution-data-server...)\n"); system (KILL_PROCESS_CMD " -9 lt-evolution-data-server 2> /dev/null"); - system (KILL_PROCESS_CMD " -9 evolution-data-server 2> /dev/null"); + system (KILL_PROCESS_CMD " -9 evolution-data-server-1.0 2> /dev/null"); system (KILL_PROCESS_CMD " -9 lt-evolution-alarm-notify 2> /dev/null"); system (KILL_PROCESS_CMD " -9 evolution-alarm-notify 2> /dev/null"); |