tests/server: fix typo in comment [ci skip]

This commit is contained in:
Viktor Szakats 2025-04-15 02:24:58 +02:00
parent 111b58fbb6
commit 3fbabec53c
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -502,7 +502,7 @@ static void exit_signal_handler(int signum)
* application, such as one in UNIX, to become multithreaded and cause
* unexpected behavior.
* [...]
* The SIGILL and SIGTERM signals are not generated under Windows.
* The SIGKILL and SIGTERM signals are not generated under Windows.
* They are included for ANSI compatibility. Therefore, you can set
* signal handlers for these signals by using signal, and you can also
* explicitly generate these signals by calling raise. Source: