aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-02-22 16:45:08 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-02-22 16:45:08 +0000
commit869865269995d67e5c30f45393e83eeee5229647 (patch)
tree2bd23d0a2d62c92e28b6b8589f21848a9404f306 /rcfile_y.y
parentd8e3aad2c36043d83d9ddc6af71a4724d3433096 (diff)
downloadfetchmail-869865269995d67e5c30f45393e83eeee5229647.tar.gz
fetchmail-869865269995d67e5c30f45393e83eeee5229647.tar.bz2
fetchmail-869865269995d67e5c30f45393e83eeee5229647.zip
EMX changes for OS/2.
svn path=/trunk/; revision=1668
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index b704c2ce..4ea4f866 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -306,6 +306,7 @@ int prc_filecheck(pathname)
/* check that a configuration file is secure */
const char *pathname; /* pathname for the configuration file */
{
+#ifndef __EMX__
struct stat statbuf;
errno = 0;
@@ -342,7 +343,7 @@ const char *pathname; /* pathname for the configuration file */
fprintf(stderr, "File %s must be owned by you.\n", pathname);
return(PS_AUTHFAIL);
}
-
+#endif
return(0);
}