summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/chat.c b/chat.c
index 9325bb6..12e4899 100644
--- a/chat.c
+++ b/chat.c
@@ -59,13 +59,14 @@ int main(int argc, char *argv[]) {
 	const char *webirc = NULL;
 
 	int opt;
-	while (0 < (opt = getopt(argc, argv, "W:h:j:n:p:vw:"))) {
+	while (0 < (opt = getopt(argc, argv, "W:h:j:n:p:u:vw:"))) {
 		switch (opt) {
 			break; case 'W': webirc = optarg;
 			break; case 'h': host = strdup(optarg);
 			break; case 'j': chat.chan = strdup(optarg);
 			break; case 'n': chat.nick = strdup(optarg);
 			break; case 'p': port = optarg;
+			break; case 'u': chat.user = strdup(optarg);
 			break; case 'v': chat.verbose = true;
 			break; case 'w': pass = optarg;
 			break; default:  return EX_USAGE;
@@ -75,7 +76,7 @@ int main(int argc, char *argv[]) {
 	if (!host) host = prompt("Host: ");
 	if (!chat.chan) chat.chan = prompt("Join: ");
 	if (!chat.nick) chat.nick = prompt("Name: ");
-	chat.user = strdup(chat.nick);
+	if (!chat.user) chat.user = strdup(chat.nick);
 
 	inputTab();
 
/commit/ui.c?h=2.1&id=e20c64d5d72e341abf8dc3cb38d7cfec371faafc&follow=1'>Reorganize UI code for the umpteenth timeJune McEnroe 2019-02-21Replace "view" with "window"June McEnroe 2019-02-21Remove ROT13June McEnroe 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe