diff options
-rw-r--r-- | omusrmsg.c | 2 | ||||
-rw-r--r-- | omusrmsg.h | 2 | ||||
-rw-r--r-- | syslogd.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -203,7 +203,7 @@ static void wallmsg(register selector_t *f) /* call the shell action * returns 0 if it succeeds, something else otherwise */ -int doActionUsrMsg(selector_t *f, time_t now) +int doActionUsrMsg(selector_t *f) { assert(f != NULL); @@ -26,7 +26,7 @@ /* prototypes */ -int doActionUsrMsg(selector_t *f, time_t now); +int doActionUsrMsg(selector_t *f); #endif /* #ifndef OMUSRMSG_H_INCLUDED */ /* @@ -4383,7 +4383,7 @@ void fprintlog(register selector_t *f) case F_USERS: case F_WALL: f->f_time = now; - doActionUsrMsg(f, now); + doActionUsrMsg(f); break; #ifdef WITH_DB |