summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-05 18:33:57 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-05 18:33:57 +0000
commiteb3065035d4be90563276d5d2c795301eaf83c4a (patch)
tree47ae08d9762de0d6bdd04b37cf6405e981c6f46c
parent0496141ebfcfd0f4bdb4eecc582e40498a976cad (diff)
- motd.c: style correction
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2204 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r--src/motd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/motd.c b/src/motd.c
index 63b8f43..8f4d9b5 100644
--- a/src/motd.c
+++ b/src/motd.c
@@ -374,13 +374,13 @@ motd_init(void)
if (MotdList.local) /* destroy old local... */
motd_destroy(MotdList.local);
- MotdList.local = motd_create(0, MPATH);
+ MotdList.local = motd_create(NULL, MPATH);
motd_cache(MotdList.local); /* init local and cache it */
if (MotdList.remote) /* destroy old remote... */
motd_destroy(MotdList.remote);
- MotdList.remote = motd_create(0, MPATH);
+ MotdList.remote = motd_create(NULL, MPATH);
motd_cache(MotdList.remote); /* init remote and cache it */
}