diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-05 23:20:30 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-05 23:20:30 +0000 |
commit | 145c103705a19ca60ae54370085b605fc8a570d6 (patch) | |
tree | 0c423652fb337683ae6663839939960fa075f58c | |
parent | 8af78e80caa5a846ec3b28ebd78ea660ca208b33 (diff) |
- hash.c:exceeding_sendq(): constification
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2758 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | src/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -692,7 +692,7 @@ delete_user_host(const char *user, const char *host, int global) * Sendq limit is fairly conservative at 1/2 (In original anyway) */ static int -exceeding_sendq(struct Client *to) +exceeding_sendq(const struct Client *to) { if (dbuf_length(&to->localClient->buf_sendq) > (get_sendq(&to->localClient->confs) / 2)) return 1; |