mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Logging: Abolished stdio in favor of write() to make the logging faster.
This commit is contained in:
@@ -323,8 +323,5 @@ tm_format_real_time(char *x, size_t max, const char *fmt, btime t)
|
||||
if (!strfusec(tbuf, tbuf_size, fmt, t2))
|
||||
return 0;
|
||||
|
||||
if (!strftime(x, max, tbuf, &tm))
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
return strftime(x, max, tbuf, &tm);
|
||||
}
|
||||
|
Reference in New Issue
Block a user