From baa042fac89b9960de59b8d9a24c6791365ec17d Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Wed, 2 Oct 2019 18:49:01 +0100 Subject: Various typo fixes. --- blabouncer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'blabouncer.c') diff --git a/blabouncer.c b/blabouncer.c index 8648a49..a9eab97 100644 --- a/blabouncer.c +++ b/blabouncer.c @@ -616,7 +616,7 @@ void dochat(int *serversockfd, int *clientsockfd, struct settings *settings) { } } } else { - // No timeout is occuring, the pselect() just timed out (which is fine and expected), back to the top of the loop + // No timeout is occurring, the pselect() just timed out (which is fine and expected), back to the top of the loop continue; } } @@ -684,7 +684,7 @@ void dochat(int *serversockfd, int *clientsockfd, struct settings *settings) { debugprint(DEBUG_SOME, "BOUNCER-SERVER RECEIVED: '%s', length '%d'.\n", serverbuf, servernumbytes); // Try to process received string (which should contain one or more server responses/commands) - // TODO - What if there were two server respones/commands and only one didn't need relaying? + // TODO - What if there were two server responses/commands and only one didn't need relaying? if (!processrawstring(server_ssl, serverbuf, SOURCE_SERVER, clients, EXCEPT_NONE, &ircdstate, channels, settings, clientcodes)) { fprintf(stderr, "Error: bouncer-server failed to process raw string.\n"); debugprint(DEBUG_CRIT, "Error: bouncer-server failed to process raw string.\n"); @@ -854,7 +854,7 @@ void dochat(int *serversockfd, int *clientsockfd, struct settings *settings) { debugprint(DEBUG_SOME, "BOUNCER-CLIENT RECEIVED: '%s'\n", clientbuf); // Try to process received string (which should contain one or more client responses/commands) - // TODO - What if there were two server respones/commands and only one didn't need relaying? + // TODO - What if there were two client responses/commands and only one didn't need relaying? if (!processrawstring(server_ssl, clientbuf, SOURCE_CLIENT, clients, i, &ircdstate, channels, settings, clientcodes)) { fprintf(stderr, "Error: bouncer-client failed to process raw string.\n"); debugprint(DEBUG_CRIT, "Error: bouncer-client failed to process raw string.\n"); -- cgit v1.2.3