snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit b681e71a06641a5b861c58c5c34a0db04d262022
parent acc2bb1549e57ac42c6bc1bcf86c6673e17e6419
Author: default <nobody@localhost>
Date:   Wed, 26 Oct 2022 08:39:23 +0200

Errors (really messages) are always shown in srv_open().

Diffstat:
Mdata.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data.c b/data.c @@ -76,7 +76,7 @@ int srv_open(char *basedir) } } - if (ret == 0 && error != NULL) + if (error != NULL) srv_log(error); return ret;