Skip to content

Commit

Permalink
use 15 instead SIGTERM constant (php warned about the constant)
Browse files Browse the repository at this point in the history
  • Loading branch information
timar committed Mar 19, 2021
1 parent 21d1de2 commit 8ec2015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -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*/);
}
}

Expand Down

0 comments on commit 8ec2015

Please sign in to comment.