about summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-09-16 17:41:18 -0400
committerJune McEnroe <june@causal.agency>2019-09-16 17:41:18 -0400
commit5cf4beec7a00580c2d9b975075ae38edf0886c18 (patch)
tree725dd9127d09060def6ccdb00ef4b93b0449cdf4 /chat.c
parentUse /etc/ssl/cert.pem in chroot (diff)
downloadcatgirl-5cf4beec7a00580c2d9b975075ae38edf0886c18.tar.gz
catgirl-5cf4beec7a00580c2d9b975075ae38edf0886c18.zip
Remove -W WEBIRC option
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/chat.c b/chat.c
index 7e1a9aa..b3e4b58 100644
--- a/chat.c
+++ b/chat.c
@@ -53,12 +53,11 @@ int main(int argc, char *argv[]) {
 	setlocale(LC_CTYPE, "");
 
 	int opt;
-	while (0 < (opt = getopt(argc, argv, "NPRW:a:h:j:k:l:n:p:r:u:vw:"))) {
+	while (0 < (opt = getopt(argc, argv, "NPRa:h:j:k:l:n:p:r:u:vw:"))) {
 		switch (opt) {
 			break; case 'N': self.notify = true;
 			break; case 'P': self.nick = prompt("Name: ");
 			break; case 'R': self.limit = 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);