summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-01 19:17:28 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-01 19:17:28 +0000
commit1f3ce6b6c3b7478b444f0cb8f4ee5ac8d9a6dc70 (patch)
tree1ee9823c0429f175ab3f21f0536bc717a8ed2f6a /include
parent2ce4e32a4b5ee135255897dd70be7648f5945e9f (diff)
- s_auth.h: made 'flags' an unsigned int type
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3091 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r--include/s_auth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/s_auth.h b/include/s_auth.h
index f2b256a..efc7121 100644
--- a/include/s_auth.h
+++ b/include/s_auth.h
@@ -51,7 +51,7 @@ struct Client;
struct AuthRequest
{
dlink_node node; /* auth_doing_list */
- int flags;
+ unsigned int flags;
struct Client *client; /* pointer to client struct for request */
fde_t fd; /* file descriptor for auth queries */
time_t timeout; /* time when query expires */