diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-04-08 06:59:47 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-04-08 06:59:47 +0000 |
commit | 2065c80c50dcd792d299ec7b4ab4887e1cb67768 (patch) | |
tree | b3dba7aeb673cbd762d620740aec69b727b21e20 /rcfile_y.y | |
parent | 8b999451bf2396e11fc2ff9560e2dc8ef127bfd6 (diff) | |
download | fetchmail-2065c80c50dcd792d299ec7b4ab4887e1cb67768.tar.gz fetchmail-2065c80c50dcd792d299ec7b4ab4887e1cb67768.tar.bz2 fetchmail-2065c80c50dcd792d299ec7b4ab4887e1cb67768.zip |
BeOS support.
svn path=/trunk/; revision=2866
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -405,12 +405,14 @@ int prc_filecheck(const char *pathname, const flag securecheck) return(PS_IOERR); } +#ifndef __BEOS__ if (statbuf.st_mode & ~(S_IFREG | S_IREAD | S_IWRITE | S_IEXEC | S_IXGRP)) { fprintf(stderr, "File %s must have no more than -rwx--x--- (0710) permissions.\n", pathname); return(PS_IOERR); } +#endif /* __BEOS__ */ #ifdef HAVE_GETEUID if (statbuf.st_uid != geteuid()) |