summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--client.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/client.c b/client.c
index 22106e3..201566e 100644
--- a/client.c
+++ b/client.c
@@ -277,44 +277,45 @@ size_t clientDiff(const struct Client *client) {
 
 typedef const char *Filter(const char *line);
 
-static const char *word(size_t i, const char *line) {
-	if (*line != ':') i--;
+static int wordcmp(const char *line, size_t i, const char *word) {
 	for (; i; --i) {
 		line += strcspn(line, " ");
 		if (*line) line++;
 	}
-	static char buf[512];
-	snprintf(buf, sizeof(buf), "%.*s", (int)strcspn(line, " "), line);
-	return buf;
+	size_t len = strcspn(line, " ");
+	if (len < strlen(word)) return -1;
+	if (len > strlen(word)) return +1;
+	return strncmp(line, word, len);
 }
 
 static const char *filterAccountNotify(const char *line) {
-	return (strcmp(word(1, line), "ACCOUNT") ? line : NULL);
+	return (wordcmp(line, 1, "ACCOUNT") ? line : NULL);
 }
 
 static const char *filterAwayNotify(const char *line) {
-	return (strcmp(word(1, line), "AWAY") ? line : NULL);
+	return (wordcmp(line, 1, "AWAY") ? line : NULL);
 }
 
 static const char *filterChghost(const char *line) {
-	return (strcmp(word(1, line), "CHGHOST") ? line : NULL);
+	return (wordcmp(line, 1, "CHGHOST") ? line : NULL);
 }
 
 static const char *filterExtendedJoin(const char *line) {
-	if (strcmp(word(1, line), "JOIN")) return line;
+	if (wordcmp(line, 1, "JOIN")) return line;
 	size_t len = 0;
 	for (int i = 0; i < 3; ++i) {
 		len += strcspn(&line[len], " ");
 		if (line[len]) len++;
 	}
 	static char buf[512];
-	snprintf(buf, sizeof(buf), "%.*s", (int)len, line);
+	assert(len < sizeof(buf));
+	strncpy(buf, line, len);
 	return buf;
 }
 
 static const char *filterInviteNotify(const char *line) {
-	if (strcmp(word(1, line), "INVITE")) return line;
-	return (strcmp(word(2, line), stateNick()) ? NULL : line);
+	if (wordcmp(line, 1, "INVITE")) return line;
+	return (wordcmp(line, 2, stateNick()) ? NULL : line);
 }
 
 static Filter *Filters[] = {
d>Always check if README exists in choose_readme()Lukas Fleischer 2014-08-01cgitrc.5: we mean a cgi response, not requestJason A. Donenfeld 2014-07-28ui-stats.c: set parent pointer to NULL after freeing itJohn Keeping 2014-07-28git: update to v2.0.3John Keeping 2014-07-28parsing.c: make commit buffer constJohn Keeping 2014-06-30Bump version.Jason A. Donenfeld 2014-06-29remove debug fprinf() calls that sneaked in with commit 79c985Christian Hesse 2014-06-28git: update to 2.0.1Christian Hesse 2014-06-28ui-patch: Flush stdout after outputting dataJohn Keeping 2014-06-28ui-log: ignore unhandled argumentsJohn Keeping 2014-06-28git: update for git 2.0Christian Hesse 2014-04-17remove trailing whitespaces from source filesChristian Hesse 2014-04-12git: update to 1.9.2Christian Hesse 2014-04-05Fix cgit_parse_url when a repo url is contained in another repo urlJulian Maurice 2014-03-20Makefile: use more reliable git tarball mirrorJason A. Donenfeld 2014-03-20git: update to 1.9.1Christian Hesse