aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
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);
}