about summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-10 11:47:48 -0500
committerJune McEnroe <june@causal.agency>2021-01-10 11:47:48 -0500
commit7b8bd50063d15113a856f87045e6a1742b80638c (patch)
tree33d0731050bdfbcb3ec8fe282f62f7c777268b7b /chat.c
parentMake SYNOPSIS arguments consistent with option names (diff)
downloadcatgirl-7b8bd50063d15113a856f87045e6a1742b80638c.tar.gz
catgirl-7b8bd50063d15113a856f87045e6a1742b80638c.zip
Exit immediately when using -o
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/chat.c b/chat.c
index a9c204d..99a529c 100644
--- a/chat.c
+++ b/chat.c
@@ -238,6 +238,12 @@ int main(int argc, char *argv[]) {
 	commandCompleteAdd();
 
 	ircConfig(insecure, trust, cert, priv);
+	if (chain) {
+		ircConnect(bind, host, port);
+		ircWriteChain(chain);
+		ircClose();
+		return EX_OK;
+	}
 
 	uiInitEarly();
 	if (save) {
@@ -255,7 +261,6 @@ int main(int argc, char *argv[]) {
 	uiDraw();
 	
 	int irc = ircConnect(bind, host, port);
-	if (chain) ircWriteChain(chain);
 	if (pass) ircFormat("PASS :%s\r\n", pass);
 	if (sasl) ircFormat("CAP REQ :sasl\r\n");
 	ircFormat("CAP LS\r\n");