]> diplodocus.org Git - nmh/blobdiff - config/config.c
new.c: Order two return statements to match comment.
[nmh] / config / config.c
index 39d43660c6764659431f69e717694f8c539faf80..fa3df3bd8068d99ad46772bac8c1a76fb701ee72 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #include <h/mh.h>
-#include "../sbr/m_maildir.h"
+#include "sbr/m_maildir.h"
 #include <pwd.h>
 
 #define nmhbindir(file) NMHBINDIR#file
@@ -77,7 +77,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;
 }