diff options
author | Luke Bratch <luke@bratch.co.uk> | 2025-08-09 11:34:01 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2025-08-09 11:34:01 +0100 |
commit | 5d52ed923b122a4e6998ae9a3501f41ff4c06bc3 (patch) | |
tree | e08de10cc43e519f2d98c2031b70d9bb434f3610 /blabouncer.c | |
parent | 1d41511b7ffb607137308adabd6b2d06906d4023 (diff) |
Correctly send non-client QUITs and add QUIT message to STDIN quit.
Diffstat (limited to 'blabouncer.c')
-rw-r--r-- | blabouncer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blabouncer.c b/blabouncer.c index 2e569a1..b3e239d 100644 --- a/blabouncer.c +++ b/blabouncer.c @@ -847,7 +847,7 @@ void dochat(int *serversockfd, int *clientsockfd, struct settings *settings) { printf("STDIN command starting: quit\n"); debugprint(DEBUG_SOME, "dochat(): stdin: STDIN command starting: quit\n"); - cleanexit(server_ssl, clients, 0, &ircdstate, settings, ""); + cleanexit(server_ssl, clients, 0, &ircdstate, settings, "STDIN quit"); debugprint(DEBUG_SOME, "dochat(): stdin: STDIN command complete: quit\n"); printf("STDIN command complete: quit\n"); |