aboutsummaryrefslogtreecommitdiffstats
path: root/kirc.c
diff options
context:
space:
mode:
authormcpcpc <michaelczigler@icloud.com>2020-09-10 12:00:39 -0400
committermcpcpc <michaelczigler@icloud.com>2020-09-10 12:00:39 -0400
commit4cffc829744e5d957200a5616499ea25da1c36ed (patch)
treeec68a2fb425ff1b75fbaecd573df09b54162217e /kirc.c
parentUpdate README.md (diff)
downloadkirc-4cffc829744e5d957200a5616499ea25da1c36ed.tar.gz
kirc-4cffc829744e5d957200a5616499ea25da1c36ed.tar.bz2
kirc-4cffc829744e5d957200a5616499ea25da1c36ed.tar.xz
kirc-4cffc829744e5d957200a5616499ea25da1c36ed.tar.zst
kirc-4cffc829744e5d957200a5616499ea25da1c36ed.zip
change default irc channel
Diffstat (limited to 'kirc.c')
-rw-r--r--kirc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kirc.c b/kirc.c
index fe3279d..9561fda 100644
--- a/kirc.c
+++ b/kirc.c
@@ -20,7 +20,7 @@ static size_t verb = 0; /* verbose output (e.g. raw stream) */
static size_t cmax = 80; /* max number of chars per line */
static size_t gutl = 10; /* max char width of left column */
static char * host = "irc.freenode.org"; /* irc host address */
-static char * chan = "kisslinux"; /* channel */
+static char * chan = "kirc"; /* channel */
static char * port = "6667"; /* server port */
static char * nick = NULL; /* nickname */
static char * pass = NULL; /* server password */