Author: Alex Badea <vampire@p16.pub.ro>
authorAlex Badea <vampire@p16.pub.ro>
Sun, 14 Apr 2002 16:45:29 +0000 (16:45 +0000)
committerAlex Badea <vampire@p16.pub.ro>
Sun, 14 Apr 2002 16:45:29 +0000 (16:45 +0000)
Log message:

Fixed a parser bug (not setting the local server infotext)

git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@735 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
ircd/ircd_parser.y

index c6759db8bbc1911b559f47359c08ebfff0b681eb..3baf46c8574e164e2c03fbd20dec6cf83f5ffda7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-14  Alex Badea  <vampire@p16.pub.ro>
+
+       * ircd/ircd_parser.y: fixed cli_info(&me) not being set
+       from 'description' conf
+
 2002-04-13  Stephane Thiell <mbuna@undernet.org>
 
        * ircd/m_whois.c: removed FindUser() in ms_whois to fix
index b570dc4c9f02229f1645b898e11380da91b42553..76512cfafcde0f005a627a6e2867626a87c42392 100644 (file)
@@ -269,6 +269,7 @@ generaldesc: DESCRIPTION '=' QSTRING ';'
 {
   MyFree(localConf.description);
   DupString(localConf.description, yylval.text);
+  ircd_strncpy(cli_info(&me), yylval.text, REALLEN);
 };
 
 generalvhost: VHOST '=' QSTRING ';'