diff -r 07b815faa6ac -r f00d03835dd9 src/server/daemon/log.c --- a/src/server/daemon/log.c Tue Dec 30 21:44:49 2025 +0100 +++ b/src/server/daemon/log.c Tue Jan 13 18:09:20 2026 +0100 @@ -107,7 +107,7 @@ }; int init_logging(void) { - log_dup_list = cxLinkedListCreate(cxDefaultAllocator, NULL, CX_STORE_POINTERS); + log_dup_list = cxLinkedListCreate(cxDefaultAllocator, CX_STORE_POINTERS); return log_dup_list == NULL; } @@ -300,7 +300,7 @@ lmsg.length = len; /* create message string */ - cxmutstr message = cx_strcat(2, lpre, lmsg); + cxmutstr message = cx_strcat(CX_NULLSTR, 2, lpre, lmsg); /* write message to the log file */ log_file_writeln(message.ptr, message.length); @@ -349,7 +349,7 @@ lmsg.length = len; /* create message string */ - cxmutstr message = cx_strcat(2, lpre, lmsg); + cxmutstr message = cx_strcat(CX_NULLSTR, 2, lpre, lmsg); /* write message to the log file */ log_file_writeln(message.ptr, message.length);