Michael Ortmann
Michael Ortmann
Found by: https://github.com/michaelortmann/ Patch by: https://github.com/michaelortmann/ Fixes: One-line summary: Fix traffic counter for transfer.mod in Additional description (if needed): Test cases demonstrating functionality (if applicable): On the Bot: `.chattr testuser...
Found by: https://github.com/michaelortmann/ Patch by: https://github.com/michaelortmann/ Fixes: One-line summary: Also log port for failed connect Additional description (if needed): Useful to relate log messages to each other and make it...
Found by: https://github.com/michaelortmann/ Patch by: https://github.com/michaelortmann/ Fixes: Found by analyzing #1723, not sure if it fixes the original bug, but this PR fixes a bug anyway One-line summary: Fix gotkick():...
Found by: https://github.com/thommey and https://github.com/dchmelik Patch by: https://github.com/michaelortmann Fixes: #461 and #1831 One-line summary: Fix and update timezone default and doc Additional description (if needed): Test cases demonstrating functionality (if...
Found by: michaelortmann Patch by: michaelortmann Fixes: One-line summary: Fix portability regarding compat/base64, python mod cflags and c compilers like `zig cc` Additional description (if needed): `$ CC="zig cc -Wno-deprecated-non-prototype"...
No functional change.
Before: ``` ./configure --prefix=/home/michael/opt/cdrdao-20251226 [...] strace /home/michael/opt/cdrdao-20251226/bin/cdrdao 2>&1 |grep "/etc" [...] openat(AT_FDCWD, "/etc/cdrdao.conf", O_RDONLY) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/etc/defaults/cdrdao", O_RDONLY) = -1 ENOENT (No such...
Tested with dragonfly 6.4.2
Fix https://github.com/cdrdao/cdrdao/issues/60 Before: ``` $CXXFLAGS="-fsanitize=address" ./configure [...] checking for Lame library version >= 3.100... no [...] Building toc2mp3 : no ``` After: ``` $ CXXFLAGS="-fsanitize=address" ./configure [...] checking for Lame...
Init `ao_sample_format` via `memset(0)`, for `ao_sample_format` could have additional fields like `matrix`: ``` typedef struct ao_sample_format { int bits; /* bits per sample */ int rate; /* samples per second...