diff options
-rw-r--r-- | mbbsd/mbbsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c index 1b932dad..044927dc 100644 --- a/mbbsd/mbbsd.c +++ b/mbbsd/mbbsd.c @@ -115,13 +115,13 @@ log_usies(char *mode, char *mesg) if (!mesg) snprintf(genbuf, sizeof(genbuf), - cuser.userid[0] ? "%s %s %-12s Stay:%d (%s)" : + cuser.userid[0] ? "%s %s %-12s Stay:%d (%s)\n" : "%s %s %s Stay:%d (%s)\n", Cdate(&now), mode, cuser.userid, (int)(now - login_start_time) / 60, cuser.username); else snprintf(genbuf, sizeof(genbuf), - cuser.userid[0] ? "%s %s %-12s %s" : "%s %s %s%s\n", + cuser.userid[0] ? "%s %s %-12s %s\n" : "%s %s %s%s\n", Cdate(&now), mode, cuser.userid, mesg); log_file(FN_USIES, genbuf, 1); |