diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2022-05-17 15:23:33 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2022-05-17 15:23:33 +0200 |
commit | 34a4541114318a7eda1c96ed58f83cdcd2622207 (patch) | |
tree | 77d13dae58b6b1a39c14046658d392b7d6b72e69 /vchat-client.c | |
parent | 986fb5638542a943a6d9cd0d38d73605a642c55a (diff) |
Move packet handler and line splitting to vchat-connection.c
Diffstat (limited to 'vchat-client.c')
-rwxr-xr-x | vchat-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vchat-client.c b/vchat-client.c index d6a3db3..db31c7c 100755 --- a/vchat-client.c +++ b/vchat-client.c | |||
@@ -411,7 +411,7 @@ eventloop (void) | |||
411 | 411 | ||
412 | /* something to read from server? */ | 412 | /* something to read from server? */ |
413 | if (poll_result & 2) | 413 | if (poll_result & 2) |
414 | networkinput (); | 414 | vc_receive (); |
415 | break; | 415 | break; |
416 | } | 416 | } |
417 | } | 417 | } |