X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/2e08fdfc0ef872c968c2e42b7ee0ede42aee14aa..f1920d78123667716f2321d37ce37628603b2700:/sbr/context_read.c diff --git a/sbr/context_read.c b/sbr/context_read.c index bee5566b..80340688 100644 --- a/sbr/context_read.c +++ b/sbr/context_read.c @@ -23,7 +23,6 @@ */ #include /* mh internals */ -#include /* system call errors */ #include /* structure for getpwuid() results */ void @@ -35,6 +34,7 @@ context_read (void) struct stat st; /* stat() results */ register struct passwd *pw; /* getpwuid() results */ register FILE *ib; /* profile and context file pointer */ + int failed_to_lock = 0; /* * If this routine _is_ called again (despite the wanings in the @@ -65,6 +65,8 @@ context_read (void) if ((cp = getenv("MH")) && *cp != '\0') { defpath = path(cp, TFILE); + /* defpath is an absolute path; make sure that always MH is, too. */ + setenv("MH", defpath, 1); if (stat(defpath, &st) != -1 && (st.st_mode & S_IFREG) == 0) adios((char *)0, "`%s' specified by your MH environment variable is not a normal file", cp); @@ -136,7 +138,7 @@ context_read (void) ctxpath = getcpy (m_maildir (cp)); - if ((ib = lkfopendata (ctxpath, "r"))) { + if ((ib = lkfopendata (ctxpath, "r", &failed_to_lock))) { readconfig ((struct node **) 0, ib, cp, 1); lkfclosedata (ib, ctxpath); }