From 1a9ae050d62dd56f285b59d3952f1dabe186ea9c Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 10 Aug 2018 00:01:35 -0400 Subject: Rename chan to join In preparation for multi-channel? --- chat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chat.c') diff --git a/chat.c b/chat.c index 12e4899..41fc3cb 100644 --- a/chat.c +++ b/chat.c @@ -63,7 +63,7 @@ int main(int argc, char *argv[]) { switch (opt) { break; case 'W': webirc = optarg; break; case 'h': host = strdup(optarg); - break; case 'j': chat.chan = strdup(optarg); + break; case 'j': chat.join = strdup(optarg); break; case 'n': chat.nick = strdup(optarg); break; case 'p': port = optarg; break; case 'u': chat.user = strdup(optarg); @@ -74,7 +74,7 @@ int main(int argc, char *argv[]) { } if (!host) host = prompt("Host: "); - if (!chat.chan) chat.chan = prompt("Join: "); + if (!chat.join) chat.join = prompt("Join: "); if (!chat.nick) chat.nick = prompt("Name: "); if (!chat.user) chat.user = strdup(chat.nick); -- cgit 1.4.1