X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/182f6368f75799e25563cbf355923a72c995078b..4c8279307f5959223cdfef84ef167e10f0ea4f23:/sbr/context_read.c diff --git a/sbr/context_read.c b/sbr/context_read.c index 2008c26b..8f63fedf 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 @@ -136,7 +136,7 @@ context_read (void) ctxpath = getcpy (m_maildir (cp)); - if ((ib = lkfopendata (ctxpath, "r", 0))) { + if ((ib = lkfopendata (ctxpath, "r", &failed_to_lock))) { readconfig ((struct node **) 0, ib, cp, 1); lkfclosedata (ib, ctxpath); }