diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2024-08-25 14:31:21 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2024-08-25 14:31:21 +0200 |
| commit | 43a39a1f2e5e6c7c520f03293fc57aa76fea8aaf (patch) | |
| tree | bf532763ebb0ef219639d401a10f1fffcf02c7b4 /handler.c | |
| parent | 93571556ee97e1a3e1829f8bc708d1d63f188840 (diff) | |
handler.c: Do not printf when exiting
libweb is meant to be silent during normal operation, thus only printing
to stderr on errors.
Diffstat (limited to 'handler.c')
| -rw-r--r-- | handler.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -205,10 +205,7 @@ int handler_loop(struct handler *const h) struct server_client *const c = server_poll(h->server, &io, &exit); if (exit) - { - printf("Exiting...\n"); break; - } else if (!c) { fprintf(stderr, "%s: server_poll failed\n", __func__); |
