diff options
author | Curtis McEnroe | 2018-08-04 17:54:46 -0400 |
---|---|---|
committer | Curtis McEnroe | 2018-08-04 17:54:46 -0400 |
commit | 35589a562473e6eab83933e498fbecf5540431d6 (patch) | |
tree | 014d092b3b19fb17c18a60c71b6829bd8c6184c8 /chat.c | |
parent | b163492552c409a7d1f4305dc88b0f279d0e0d91 (diff) |
Rename client to irc
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.c b/chat.c index ab0d4d7..f52bc3a 100644 --- a/chat.c +++ b/chat.c @@ -71,7 +71,7 @@ int main(int argc, char *argv[]) { uiChat("Traveling..."); uiDraw(); - int sock = clientConnect(host, port, webPass); + int sock = ircConnect(host, port, webPass); free(host); struct pollfd fds[2] = { @@ -87,7 +87,7 @@ int main(int argc, char *argv[]) { } if (fds[0].revents) uiRead(); - if (fds[1].revents) clientRead(); + if (fds[1].revents) ircRead(); uiDraw(); } } |