]> diplodocus.org Git - nmh/blobdiff - config/config.c
forwsbr.c: Move interface declaration to own forwsbr.h.
[nmh] / config / config.c
index 5b08db28b7fb6f1934bb1193b98cc22dc03a7a6b..2511472edf6ee537b5b9fa68e5f5b85a085daaf8 100644 (file)
@@ -23,6 +23,7 @@
  * 3) Next, check in nmh Mail directory.
  * 4) Next, check in nmh `etc' directory.
  *
+ * Does not return NULL.
  */
 
 char *
@@ -77,7 +78,7 @@ try_it:
 
     /* Check nmh `etc' directory */
     snprintf (epath, sizeof(epath), nmhetcdir(/%s), file);
-    return (access (epath, R_OK) != NOTOK ? epath : file);
+    return access(epath, R_OK) != NOTOK ? epath : file;
 }