git: 9front

Download patch

ref: 78e2f69c0d7e4c17227e1ec0545cbb2a0ae1e96e
parent: 18207e0f7eb967b9980d657668354e56cf5f5901
author: qwx <qwx@sciops.net>
date: Sun Dec 7 06:59:11 EST 2025

ircrc: permit / in nicknames (thanks cgnarne)

services like znc use user/server in either nickname or server
password to connect to different networks.  with -P now
removed, this is a simple way to make this work again.

--- a/rc/bin/ircrc
+++ b/rc/bin/ircrc
@@ -147,7 +147,7 @@
 
 fn numeric {
 	sed 's/^:[a-zA-Z0-9_@\-|.!=#]+ //
-		s/ '^$nick^' //
+		s, '^$nick^' ,,
 		s/^353= /***	Users on /
 		s/^[0-9][0-9][0-9] ?:?/***	/'
 }
--