From a359ccec4f25d8424477913e301e46d5175eef12 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 19 Jan 2014 17:37:16 +0000 Subject: - 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 --- src/motd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit