From fe938fba535ee939c8a4d903736426c4cf6f1f3b Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sat, 4 Aug 2018 01:12:26 -0400 Subject: Track own nick --- chat.c | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/chat.c b/chat.c index a428819..c3a4f4f 100644 --- a/chat.c +++ b/chat.c @@ -254,16 +254,21 @@ static char *shift(char **params) { return strsep(params, " "); } -static void handle001(char *prefix, char *params) { - (void)prefix; (void)params; - clientFmt("JOIN %s\r\n", client.chan); -} - static void handlePing(char *prefix, char *params) { (void)prefix; clientFmt("PONG %s\r\n", params); } +static void handle001(char *prefix, char *params) { + (void)prefix; + char *nick = shift(¶ms); + if (strcmp(nick, client.nick)) { + free(client.nick); + client.nick = strdup(nick); + } + clientFmt("JOIN %s\r\n", client.chan); +} + static void handleJoin(char *prefix, char *params) { char *nick = prift(&prefix); char *user = prift(&prefix); @@ -370,6 +375,10 @@ static void handleNick(char *prefix, char *params) { char *prev = prift(&prefix); char *user = prift(&prefix); char *next = shift(¶ms); + if (!strcmp(user, client.user)) { + free(client.nick); + client.nick = strdup(next); + } uiFmt( "\3%d%s\3 is now known as \3%d%s\3", color(user), prev, color(user), next -- cgit 1.4.1 at/fcntl.h?h=3.3.1&id=599bf3d6743ed01998947039f239607b643a0873'>tree commit diff
path: root/include/compat/fcntl.h (unfollow)
Commit message (Collapse)Author
2021-05-25import: Add missing scripts/wrap-compiler-for-flag-checkJune McEnroe
2021-05-08Import LibreSSL 3.3.3June McEnroe
2021-04-18build: Remove added x509_verify.3 links 3.3.2June McEnroe
2021-04-18tls: Use EC_KEY_set_ex_dataJune McEnroe
2021-04-18Import LibreSSL 3.3.2June McEnroe
2021-03-05Bump version to 3.3.1p1 3.3.1p1June McEnroe
2021-03-05build: Add OpenSSL includes to libcompatJune McEnroe
Some compat sources (getentropy_linux.c for example) require OpenSSL. Reported by Robert Scheck.
2020-12-15Import LibreSSL 3.3.1June McEnroe
2020-11-24Import LibreSSL 3.3.0June McEnroe
2020-10-22Import LibreSSL 3.2.2June McEnroe
2020-09-29Import LibreSSL 3.2.1June McEnroe
2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe