diff options
| author | 2022-10-26 08:39:23 +0200 | |
|---|---|---|
| committer | 2022-10-26 08:39:23 +0200 | |
| commit | b681e71a06641a5b861c58c5c34a0db04d262022 (patch) | |
| tree | a6049b1fc0cb01f909d969982f91608576d01e3e /data.c | |
| parent | Backport from xs. (diff) | |
| download | snac2-b681e71a06641a5b861c58c5c34a0db04d262022.tar.gz snac2-b681e71a06641a5b861c58c5c34a0db04d262022.tar.xz snac2-b681e71a06641a5b861c58c5c34a0db04d262022.zip | |
Errors (really messages) are always shown in srv_open().
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -76,7 +76,7 @@ int srv_open(char *basedir) | |||
| 76 | } | 76 | } |
| 77 | } | 77 | } |
| 78 | 78 | ||
| 79 | if (ret == 0 && error != NULL) | 79 | if (error != NULL) |
| 80 | srv_log(error); | 80 | srv_log(error); |
| 81 | 81 | ||
| 82 | return ret; | 82 | return ret; |