diff options
Diffstat (limited to 'eathena-monitor.c')
-rw-r--r-- | eathena-monitor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eathena-monitor.c b/eathena-monitor.c index df247ada..3ab7f0f2 100644 --- a/eathena-monitor.c +++ b/eathena-monitor.c @@ -126,9 +126,9 @@ void start_process(char *exec) { } void stop_process(int sig) { - system("killall -9 map-server"); - system("killall -9 login-server"); - system("killall -9 char-server"); + system("killall map-server"); + system("killall login-server"); + system("killall char-server"); exit(0); } |