summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-02-26 19:34:04 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-02-26 19:34:04 +0000
commit88cf4028c043a0331d664763b05e35bfad49f3d3 (patch)
tree80761bbbc4906b1b98da5fd1872ef3681a2b7aa5 /src
parentdb76e99fd07d04e08ed3c3c79b0b8a246bd1b787 (diff)
- channel_mode.c: made mode_count, mode_limit, simple_modes_mask unsigned int types
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3058 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src')
-rw-r--r--src/channel_mode.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/channel_mode.c b/src/channel_mode.c
index 94b6002..067e8ad 100644
--- a/src/channel_mode.c
+++ b/src/channel_mode.c
@@ -51,9 +51,9 @@ static char nuh_mask[MAXPARA][IRCD_BUFSIZE];
static char modebuf[IRCD_BUFSIZE];
static char parabuf[MODEBUFLEN];
static struct ChModeChange mode_changes[IRCD_BUFSIZE];
-static int mode_count;
-static int mode_limit; /* number of modes set other than simple */
-static int simple_modes_mask; /* bit mask of simple modes already set */
+static unsigned int mode_count;
+static unsigned int mode_limit; /* number of modes set other than simple */
+static unsigned int simple_modes_mask; /* bit mask of simple modes already set */
#ifdef HALFOPS
static int channel_capabs[] = { CAP_TS6, CAP_HOPS };
#else
@@ -1191,7 +1191,8 @@ chm_limit(struct Client *client_p, struct Client *source_p,
struct Channel *chptr, int parc, int *parn,
char **parv, int *errors, int alev, int dir, char c, unsigned int d)
{
- int i, limit;
+ unsigned int i;
+ int limit;
char *lstr;
if (alev < CHACCESS_HALFOP)
@@ -1253,7 +1254,7 @@ chm_key(struct Client *client_p, struct Client *source_p,
struct Channel *chptr, int parc, int *parn,
char **parv, int *errors, int alev, int dir, char c, unsigned int d)
{
- int i;
+ unsigned int i;
char *key;
if (alev < CHACCESS_HALFOP)
@@ -1647,7 +1648,8 @@ static void
send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
struct Channel *chptr, unsigned int cap, unsigned int nocap)
{
- int i, mbl, pbl, arglen, nc, mc;
+ unsigned int i;
+ int mbl, pbl, arglen, nc, mc;
int len;
const char *arg = NULL;
char *parptr;
@@ -1761,7 +1763,8 @@ static void
send_mode_changes(struct Client *client_p, struct Client *source_p,
struct Channel *chptr)
{
- int i, mbl, pbl, arglen, nc, mc;
+ unsigned int i;
+ int mbl, pbl, arglen, nc, mc;
int len;
const char *arg = NULL;
char *parptr;