Update of /cvsroot/solidircd/solidircd-stable/src
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv16035/src
Modified Files:
channel.c
Log Message:
minor changes.
Index: channel.c
===================================================================
RCS file: /cvsroot/solidircd/solidircd-stable/src/channel.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** channel.c 25 Jun 2006 22:53:01 -0000 1.19
--- channel.c 26 Jun 2006 14:17:03 -0000 1.20
***************
*** 2441,2445 ****
--- 2441,2452 ----
static int can_walk(aClient *sptr, aChannel *chptr) {
+
+ #ifdef ADMIN_CAN_WALK_ONLY
if (IsSAdmin(sptr)) {
+ #endif
+
+ #ifdef ALL_OPERS_CAN_WALK_ONLY
+ if (IsOper(sptr)) {
+ #endif
*modebuf = *parabuf = '\0';
modebuf[1] = '\0';
|