summaryrefslogtreecommitdiff
path: root/chat.c
diff options
context:
space:
mode:
authorCurtis McEnroe2019-07-02 18:40:06 -0400
committerCurtis McEnroe2019-07-02 18:40:06 -0400
commit906440968e658629a3722ebc8d8405cbbb7b4d1d (patch)
tree7555c879b99b4756d42bce475c53e1ed233f805c /chat.c
parent426be32b1d802cf442cc074a4a412ffa4eb6e3ad (diff)
Add -k option for joining with keys
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/chat.c b/chat.c
index 2ec20bd..a9677cf 100644
--- a/chat.c
+++ b/chat.c
@@ -53,13 +53,14 @@ int main(int argc, char *argv[]) {
setlocale(LC_CTYPE, "");
int opt;
- while (0 < (opt = getopt(argc, argv, "NW:a:h:j:l:n:p:r:u:vw:"))) {
+ while (0 < (opt = getopt(argc, argv, "NW:a:h:j:k:l:n:p:r:u:vw:"))) {
switch (opt) {
break; case 'N': self.notify = true;
break; case 'W': self.webp = dupe(optarg);
break; case 'a': self.auth = dupe(optarg);
break; case 'h': self.host = dupe(optarg);
break; case 'j': self.join = dupe(optarg);
+ break; case 'k': self.keys = dupe(optarg);
break; case 'l': logOpen(optarg);
break; case 'n': self.nick = dupe(optarg);
break; case 'p': self.port = dupe(optarg);