Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 8d173a33286f47ac5678a8ce8cdd756295342cb1
https://github.com/ngircd/ngircd/commit/8d173a33286f47ac5678a8ce8cdd7562953…
Author: Alexander Barton <alex(a)barton.de>
Date: 2020-02-15 (Sat, 15 Feb 2020)
Changed paths:
M src/portab/portabtest.c
Log Message:
-----------
Fix memory leak in portabtest Check_strtok_r()
Fix the following Clang "LeakSanitizer" error (which isn't quite
relevant in this test program, but anyway):
ERROR: LeakSanitizer: detected memory leaks
Direct leak of 7 byte(s) in 1 object(s) allocated from:
#0 0x7f8c4d022810 in strdup (/lib/x86_64-linux-gnu/libasan.so.5+0x3a810)
#1 0x5601a801491a in Check_strtok_r (/net/arthur/home/alex/Develop/ngIRCd/ngIRCd.git/src/portab/portabtest+0x291a)
#2 0x5601a8014d77 in main (/net/arthur/home/alex/Develop/ngIRCd/ngIRCd.git/src/portab/portabtest+0x2d77)
#3 0x7f8c4c69009a in __libc_start_main ../csu/libc-start.c:308
SUMMARY: AddressSanitizer: 7 byte(s) leaked in 1 allocation(s).
FAIL: portabtest
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: f5fa7db4ba46521e49a4ae4e1ba9d09c918926b3
https://github.com/ngircd/ngircd/commit/f5fa7db4ba46521e49a4ae4e1ba9d09c918…
Author: Alexander Barton <alex(a)barton.de>
Date: 2020-01-21 (Tue, 21 Jan 2020)
Changed paths:
M AUTHORS
M ChangeLog
M INSTALL
M NEWS
M README
M doc/HowToRelease.txt
M man/ngircd.8.tmpl
M man/ngircd.conf.5.tmpl
M src/ngircd/ngircd.c
Log Message:
-----------
2020!
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 22cae1b5fc6779a1d74a5ca10ba6c8af45028e98
https://github.com/ngircd/ngircd/commit/22cae1b5fc6779a1d74a5ca10ba6c8af450…
Author: Alexander Barton <alex(a)barton.de>
Date: 2019-12-31 (Tue, 31 Dec 2019)
Changed paths:
M src/ngircd/ngircd.c
Log Message:
-----------
Enhance handling of command line errors, and "--help" & "--version"
Return with exit code 0 ("no error") when "--help" or "--version" was
used (this resulted in exit code 1, "error" before).
And exit with code 2 ("command line error") for all invalid command
line options, and show the error message on stderr (message was printed
to stdout before, and exit code was 1, "generic error").
This new behaviour is more in line with the GNU "coding standards",
see <https://www.gnu.org/prep/standards/html_node/_002d_002dhelp.html>.