summary refs log tree commit diff
path: root/client.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-26 01:23:04 -0400
committerJune McEnroe <june@causal.agency>2019-10-26 01:23:04 -0400
commit809b401c37e2fb8a3087244bd9cae711769c0474 (patch)
tree7f40a74d4bba46564b02d132d182dc393a3f5e13 /client.c
parentAllow reading sensitive information from files (diff)
downloadpounce-809b401c37e2fb8a3087244bd9cae711769c0474.tar.gz
pounce-809b401c37e2fb8a3087244bd9cae711769c0474.zip
Disconnect client on unknown command
During registration, no other commands should be sent. Afterwards, only
intercepted commands will get parsed.
Diffstat (limited to 'client.c')
-rw-r--r--client.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/client.c b/client.c
index 28b9903..703a698 100644
--- a/client.c
+++ b/client.c
@@ -204,6 +204,7 @@ static void clientParse(struct Client *client, char *line) {
 		Handlers[i].fn(client, &msg);
 		break;
 	}
+	client->error = true;
 }
 
 static bool intercept(const char *line, size_t len) {