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:
M | data.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;