Sometimes in the log file appear strange characters.
Symbols appear after the date before the text message.
Bug in file: src/utils.c
function: void basic_mud_vlog
In line: char timestr[20];
Change 20 to 21
And add clean buffer:
Code:
for (i=0;i<21;i++) timestr[i]=0;
before strftime(timestr, sizeof(timestr), ...
Strange characters no longer appear
Prool