From 4e1501df4149dc35856faf059e3bbed9edb3f5c4 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 9 Aug 2018 21:46:22 -0400 Subject: Add -u option for setting user --- chat.c | 5 +++-- 1 file 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(); -- cgit 1.4.0 1?id=5ce87734ae21890f0cd1ff50702265446220f5c9&follow=1'>commit diff
path: root/bin/man1/brot.1 (unfollow)
Commit message (Expand)Author
2019-06-02Add RebornJune McEnroe
2019-05-30Add bit to bin.7June McEnroe
2019-05-30Simplify and build bitJune McEnroe
2019-05-29Add xx -p optionJune McEnroe
2019-05-27Add FrontierJune McEnroe
2019-05-27Break nicks with ZWNJJune McEnroe
2019-05-26Add DawnJune McEnroe
2019-05-20Declare vasprintf(3) for GNUJune McEnroe
2019-05-20Fix comparison warning in ttpreJune McEnroe
2019-05-20Add AuthorityJune McEnroe
2019-05-19Specify precedence of unary versions of operatorsJune McEnroe
2019-05-18Add compound assignment operators to orderJune McEnroe
2019-05-15Support simple assignment in orderJune McEnroe
2019-05-15Implement sizeof in orderJune McEnroe
2019-05-15Add orderJune McEnroe
2019-05-12Add T suffix in bitJune McEnroe
2019-05-10Highlight yacc and lex files as CJune McEnroe
2019-05-10Use val instead of suboptargJune McEnroe
2019-05-09Add Parable of the SowerJune McEnroe
2019-05-07Add bit without buildJune McEnroe
2019-05-04Fix MANDIR typoJune McEnroe
2019-05-04Move relay to binJune McEnroe