Removed the option to disable `~user' support (MHRC)
authormarkus schnalke <meillo@marmaro.de>
Fri, 9 Dec 2011 16:17:50 +0000 (17:17 +0100)
committermarkus schnalke <meillo@marmaro.de>
Fri, 9 Dec 2011 16:17:50 +0000 (17:17 +0100)
acconfig.h
config/config.c

index c8882cb..f3d9ca3 100644 (file)
 #define SLOCAL_MBOX  1
 
 /*
- * If this is defined, nmh will recognize the ~ construct.
- */
-#define MHRC    1
-
-/*
  * Compile simple ftp client into mhshow/mhstore.  This will be used by
  * mhshow/mhstore for ftp access unless you have specified another access
  * method in your .mh_profile or mhn.defaults.  Use the "nmh-access-ftp"
index cc12128..245ecde 100644 (file)
@@ -7,10 +7,7 @@
 */
 
 #include <h/mh.h>
-
-#ifdef MHRC
-# include <pwd.h>
-#endif
+#include <pwd.h>
 
 
 /*
@@ -28,7 +25,6 @@ etcpath (char *file)
 {
        static char epath[PATH_MAX];
        char *cp;
-#ifdef MHRC
        char *pp;
        struct passwd *pw;
 
@@ -56,9 +52,8 @@ etcpath (char *file)
                if (access (epath, R_OK) != NOTOK)
                        return epath;  /* else fall */
        }
-try_it:
-#endif /* MHRC */
 
+try_it:
        if (*file == '/') {
                /* If already absolute pathname, return it */
                return file;