From 87a9f77322635a9ae6bfaef9e0f32e0b20391d1e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Mon, 30 Jul 2007 23:22:48 +0000 Subject: [PATCH] * look exactly for 2 or 3, so the status request will still work. --- citadel/citserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/citserver.c b/citadel/citserver.c index a89ef729b..262cb2b32 100644 --- a/citadel/citserver.c +++ b/citadel/citserver.c @@ -799,7 +799,7 @@ void cmd_scdn(char *argbuf) if (CtdlAccessCheck(ac_aide)) return; new_state = extract_int(argbuf, 0); - if (new_state > 1) + if ((new_state == 2) || (new_state == 3)) { restart_server = 1; if (!running_as_daemon) -- 2.39.2