1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-29 19:26:37 +02:00

Fixed a NOTICE bug

This commit is contained in:
stskeeps
2000-09-02 07:52:18 +00:00
parent 55a0b03f03
commit 23438196eb
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -598,3 +598,4 @@
- ./update now checks when you specify wget if it exists, if not it tries lynx
- Cached MOTDs are now dynamically allocated (saves alot of memory)
- Made aClient->passwd dynamically allocated (saves 32bytes per user/server) [may need debugging]
- Fixed a NOTICE crash bug, reported by EJ
+2 -1
View File
@@ -2319,7 +2319,8 @@ int m_notice(cptr, sptr, parc, parv)
return 0;
}
temp:
return m_message(cptr, sptr, parc, parv, 1);
if (sptr->name[0])
return m_message(cptr, sptr, parc, parv, 1);
}
int channelwho = 0;