-
-/*
- * mhparse.c -- routines to parse the contents of MIME messages
+/* mhparse.c -- routines to parse the contents of MIME messages
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
return NULL;
}
fseek (fp, 0L, SEEK_SET);
- } else if (lstat (file, &statbuf) == NOTOK) {
- advise (file, "unable to lstat");
+ } else if (stat (file, &statbuf) == NOTOK) {
+ advise (file, "unable to stat");
return NULL;
} else if (S_ISDIR(statbuf.st_mode)) {
/* Don't try to parse a directory. */