diff options
| author | Luke Bratch <luke@bratch.co.uk> | 2019-10-02 18:49:01 +0100 | 
|---|---|---|
| committer | Luke Bratch <luke@bratch.co.uk> | 2019-10-02 18:49:01 +0100 | 
| commit | baa042fac89b9960de59b8d9a24c6791365ec17d (patch) | |
| tree | f570f72a10d0dd97fb9bb8c9bc296ee013bc3cf5 /blabouncer.c | |
| parent | a2f388e16891f71d97066cf2803d02ad61bae6d5 (diff) | |
Various typo fixes.
Diffstat (limited to 'blabouncer.c')
| -rw-r--r-- | blabouncer.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| 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"); | 
