From eb3065035d4be90563276d5d2c795301eaf83c4a Mon Sep 17 00:00:00 2001 From: michael Date: Wed, 5 Jun 2013 18:33:57 +0000 Subject: - 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 --- src/motd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 */ } -- cgit