From 8ec20154536d7692672636bb9567bcc179e453d6 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Fri, 19 Mar 2021 21:38:02 +0100 Subject: [PATCH] use 15 instead SIGTERM constant (php warned about the constant) --- proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy.php b/proxy.php index 6b22d10..7aaeaf9 100644 --- a/proxy.php +++ b/proxy.php @@ -108,7 +108,7 @@ function stopLoolwsd() if (posix_kill($pid,0)) { debug_log("Stopping the loolwsd server with pid: $pid"); - posix_kill($pid,SIGTERM); + posix_kill($pid, 15 /*SIGTERM*/); } }