about summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'input.c')
-rw-r--r--input.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/input.c b/input.c
index 2cd0ca6..de27778 100644
--- a/input.c
+++ b/input.c
@@ -118,8 +118,11 @@ static void inputTopic(struct Tag tag, char *params) {
 
 static void inputQuit(struct Tag tag, char *params) {
 	(void)tag;
-	ircFmt("QUIT :%s\r\n", params ? params : "Goodbye");
-	self.quit = true;
+	if (params) {
+		ircQuit(params);
+	} else {
+		ircQuit("Goodbye");
+	}
 }
 
 static void inputURL(struct Tag tag, char *params) {