summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-19 17:37:16 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-19 17:37:16 +0000
commita359ccec4f25d8424477913e301e46d5175eef12 (patch)
tree383ed17659cba94d745467bee1ff4f349b648460 /src
parent2f09c0dca9dd1e8741e2de040de1359594b9151e (diff)
- motd.c:motd_lookup(): constification
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2875 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src')
-rw-r--r--src/motd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/motd.c b/src/motd.c
index 02c01ed..5b80a08 100644
--- a/src/motd.c
+++ b/src/motd.c
@@ -224,7 +224,7 @@ motd_destroy(struct Motd *motd)
* \return Pointer to first matching MOTD for the client.
*/
static struct Motd *
-motd_lookup(struct Client *client_p)
+motd_lookup(const struct Client *client_p)
{
dlink_node *ptr = NULL;
const struct ClassItem *class = NULL;