diff options
author | epoch <epoch@hack.thebackupbox.net> | 2019-06-08 11:04:17 +0000 |
---|---|---|
committer | epoch <epoch@hack.thebackupbox.net> | 2019-06-08 11:04:17 +0000 |
commit | 5233bdf96e20f490a1535b8537209d31e0819415 (patch) | |
tree | bc9e1500de37d789b3749ab66d35015ba1865909 | |
parent | fb27e8a29e91f3f90d57f4eb9238a9ac3cb90b46 (diff) | |
download | libidc-5233bdf96e20f490a1535b8537209d31e0819415.tar.gz libidc-5233bdf96e20f490a1535b8537209d31e0819415.zip |
fixed PONG
-rw-r--r-- | ircify.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ char channel[256]; void irc_handler(struct shit *me,char *line) { char tmp[1024]; if(!strncmp(line,"PING ",5)) { - printf("PONG :%s\r\n",line+5); + printf("PONG %s\r\n",line+5); fflush(stdout); } if(*line == ':') { |