diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-19 17:37:16 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-19 17:37:16 +0000 |
commit | a359ccec4f25d8424477913e301e46d5175eef12 (patch) | |
tree | 383ed17659cba94d745467bee1ff4f349b648460 /src | |
parent | 2f09c0dca9dd1e8741e2de040de1359594b9151e (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |