summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */
}