X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/30fd2ad6d3eff3749b2ae99ec90d2215bf1b1aca..b11a86cf7a0fc5b0dfef070e0bc65754c7d26016:/sbr/context_read.c?ds=inline diff --git a/sbr/context_read.c b/sbr/context_read.c index 1a584e4c..164f6794 100644 --- a/sbr/context_read.c +++ b/sbr/context_read.c @@ -1,8 +1,6 @@ /* * context_read.c -- find and read profile and context files * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -25,7 +23,6 @@ */ #include /* mh internals */ -#include /* system call errors */ #include /* structure for getpwuid() results */ void @@ -138,9 +135,9 @@ context_read (void) ctxpath = getcpy (m_maildir (cp)); - if ((ib = lkfopen (ctxpath, "r"))) { + if ((ib = lkfopendata (ctxpath, "r"))) { readconfig ((struct node **) 0, ib, cp, 1); - lkfclose (ib, ctxpath); + lkfclosedata (ib, ctxpath); } return;