X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5dd6771b28c257af405d7248639ed0e3bcdce38b..beb2f391989350fd107ca0e860dccdb63cb6bf20:/sbr/context_read.c?ds=inline diff --git a/sbr/context_read.c b/sbr/context_read.c index a655effc..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,9 +136,9 @@ context_read (void) ctxpath = getcpy (m_maildir (cp)); - if ((ib = lkfopen (ctxpath, "r"))) { + if ((ib = lkfopendata (ctxpath, "r", &failed_to_lock))) { readconfig ((struct node **) 0, ib, cp, 1); - lkfclose (ib, ctxpath); + lkfclosedata (ib, ctxpath); } return;