Committer : klmitch
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_07
Commit time: 2004-06-09 00:51:40 UTC
Modified files:
Tag: u2_10_11_07
ChangeLog ircd/parse.c
Log message:
Author: Kev <[EMAIL PROTECTED]>
Log message:
Fix minor bug with /jupe...
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.130.2.8 ircu2.10/ChangeLog:1.290.2.130.2.9
--- ircu2.10/ChangeLog:1.290.2.130.2.8 Fri May 14 20:43:39 2004
+++ ircu2.10/ChangeLog Tue Jun 8 17:51:28 2004
@@ -1,3 +1,8 @@
+2004-06-08 Kevin L Mitchell <[EMAIL PROTECTED]>
+
+ * ircd/parse.c: don't let rank-and-file users escape HIS
+ limitations with /jupe...
+
2004-05-14 Kevin L Mitchell <[EMAIL PROTECTED]>
* ircd/ircd_features.c: per CFV-0243, NICKLEN default is increased
Index: ircu2.10/ircd/parse.c
diff -u ircu2.10/ircd/parse.c:1.30.2.9 ircu2.10/ircd/parse.c:1.30.2.9.2.1
--- ircu2.10/ircd/parse.c:1.30.2.9 Sat Jan 10 16:23:32 2004
+++ ircu2.10/ircd/parse.c Tue Jun 8 17:51:29 2004
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: parse.c,v 1.30.2.9 2004/01/11 00:23:32 isomer Exp $
+ * $Id: parse.c,v 1.30.2.9.2.1 2004/06/09 00:51:29 klmitch Exp $
*/
#include "config.h"
@@ -461,7 +461,7 @@
TOK_JUPE,
0, MAXPARA, MFLG_SLOW, 0,
/* UNREG, CLIENT, SERVER, OPER, SERVICE */
- { m_unregistered, m_jupe, ms_jupe, mo_jupe, m_ignore }
+ { m_unregistered, m_not_oper, ms_jupe, mo_jupe, m_ignore }
},
{
MSG_OPMODE,
----------------------- End of diff -----------------------