From 2905d740790725fea7ea94a9ac2ae0ffd31fb593 Mon Sep 17 00:00:00 2001 From: Tobias Girstmair Date: Fri, 3 May 2024 19:14:45 +0200 Subject: [PATCH] partially revert IRCv3 USER tilde prefixing to disable ident lookup seems to not be supported by libera, so don't bother. --- ircpipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircpipe.c b/ircpipe.c index 9a2b2c8..a467c61 100644 --- a/ircpipe.c +++ b/ircpipe.c @@ -167,7 +167,7 @@ int irc_setup(const sock_t sock, const int outfd, const char *nick, const char * n = snprintf(buf, BUFSIZ, "NICK %s\r\n", nick); WRITE(sock, buf, n); - n = snprintf(buf, BUFSIZ, "USER ~%s 0 * :%s\r\n", nick, nick); + n = snprintf(buf, BUFSIZ, "USER %s 0 * :%s\r\n", nick, nick); WRITE(sock, buf, n); if (pass_type == SASL_PLAIN_PASSWD) { -- 2.39.3