diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2007-12-26 14:18:17 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2007-12-26 14:18:17 +0000 |
commit | d723cc008d7793334260e6ac0d7412ce13e1cf29 (patch) | |
tree | 982df8d876b94ba70beef2ce6d21f185620454ec /rcfile_y.y | |
parent | a87edc0f180fcfbdc6548352b93619ae3031e545 (diff) | |
download | fetchmail-d723cc008d7793334260e6ac0d7412ce13e1cf29.tar.gz fetchmail-d723cc008d7793334260e6ac0d7412ce13e1cf29.tar.bz2 fetchmail-d723cc008d7793334260e6ac0d7412ce13e1cf29.zip |
.fetchmailrc/.fetchids may now be symlinks, Debian Bug#452907 (Roger Leigh).
svn path=/branches/BRANCH_6-3/; revision=5144
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -404,7 +404,7 @@ int prc_filecheck(const char *pathname, process, it must have permissions no greater than 600, and it must not be a symbolic link. We check these conditions here. */ - if (lstat(pathname, &statbuf) < 0) { + if (stat(pathname, &statbuf) < 0) { if (errno == ENOENT) return(PS_SUCCESS); else { |