Browse Source

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

default 3 years ago
parent
commit
b681e71a06
1 changed files with 1 additions and 1 deletions
  1. 1 1
      data.c

+ 1 - 1
data.c

@@ -76,7 +76,7 @@ int srv_open(char *basedir)
         }
     }
 
-    if (ret == 0 && error != NULL)
+    if (error != NULL)
         srv_log(error);
 
     return ret;