diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-05 18:33:57 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-05 18:33:57 +0000 |
commit | eb3065035d4be90563276d5d2c795301eaf83c4a (patch) | |
tree | 47ae08d9762de0d6bdd04b37cf6405e981c6f46c /src | |
parent | 0496141ebfcfd0f4bdb4eecc582e40498a976cad (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
Diffstat (limited to 'src')
-rw-r--r-- | src/motd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ } |