diff options
author | owen bell <owenbell@riseup.net> | 2020-10-30 20:52:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 20:52:14 -0400 |
commit | f2a54fdaadb22ac6bdf65e2407d5828f4fb394f3 (patch) | |
tree | 8648dbf3a2ae5fb6ecbcdce44e42b8c7a6261615 | |
parent | 0.2.0 (#86) (diff) | |
download | kirc-f2a54fdaadb22ac6bdf65e2407d5828f4fb394f3.tar.gz kirc-f2a54fdaadb22ac6bdf65e2407d5828f4fb394f3.tar.bz2 kirc-f2a54fdaadb22ac6bdf65e2407d5828f4fb394f3.tar.xz kirc-f2a54fdaadb22ac6bdf65e2407d5828f4fb394f3.tar.zst kirc-f2a54fdaadb22ac6bdf65e2407d5828f4fb394f3.zip |
freenode.net instead of .org (#88)
Diffstat (limited to '')
-rw-r--r-- | kirc.1 | 2 | ||||
-rw-r--r-- | kirc.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ text and color can be controlled with ANSI escape sequences. .SH OPTIONS .TP .BI \-s " server" -Overrides the default host (irc.freenode.org) +Overrides the default host (irc.freenode.net) .TP .BI \-p " port" Overrides the default port (6697) @@ -24,7 +24,7 @@ static char cdef[MSG_MAX] = "?"; /* default PRIVMSG channel */ static int conn; /* connection socket */ static int verb = 0; /* verbose output */ static int sasl = 0; /* SASL method */ -static char * host = "irc.freenode.org"; /* host address */ +static char * host = "irc.freenode.net"; /* host address */ static char * port = "6667"; /* port */ static char * chan = NULL; /* channel(s) */ static char * nick = NULL; /* nickname */ |