summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bounce.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/bounce.c b/bounce.c
index 0354bf5..f460d74 100644
--- a/bounce.c
+++ b/bounce.c
@@ -538,10 +538,13 @@ int main(int argc, char *argv[]) {
 	serverFormat("QUIT :%s\r\n", quit);
 	for (size_t i = binds + 1; i < event.len; ++i) {
 		assert(event.clients[i]);
-		clientFormat(event.clients[i], ":%s QUIT :%s\r\n", stateEcho(), quit);
-		clientFormat(event.clients[i], "ERROR :Disconnecting\r\n");
+		if (!event.clients[i]->need) {
+			clientFormat(
+				event.clients[i], ":%s QUIT :%s\r\nERROR :Disconnecting\r\n",
+				stateEcho(), quit
+			);
+		}
 		clientFree(event.clients[i]);
-		close(event.fds[i].fd);
 	}
 }
 
f='/catgirl/commit/configure?h=enroll&id=c95c8cd1b47d9b2031bc3c05d661168a7f346c56&follow=1'>Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe