SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
23
net/ircII/patches/patch-source_log_c
Normal file
23
net/ircII/patches/patch-source_log_c
Normal file
|
@ -0,0 +1,23 @@
|
|||
--- source/log.c.orig Fri Nov 20 10:23:54 2015
|
||||
+++ source/log.c Wed Dec 2 17:40:09 2015
|
||||
@@ -155,12 +155,19 @@ set_log_file(u_char *filename)
|
||||
void
|
||||
add_to_log(FILE *fp, u_char *line)
|
||||
{
|
||||
+ time_t t;
|
||||
+ struct tm *tm;
|
||||
+ char buf[32];
|
||||
+
|
||||
if (fp == NULL)
|
||||
fp = irclog_fp;
|
||||
|
||||
if (fp)
|
||||
{
|
||||
- fprintf(fp, "%s\n", line);
|
||||
+ t = time(0);
|
||||
+ tm = localtime(&t);
|
||||
+ strftime(buf, sizeof buf, "%b %d %R", tm);
|
||||
+ fprintf(fp, "[%s] %s\n", buf, line);
|
||||
fflush(fp);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue