diff options
author | Greg Stark | 2010-03-01 00:04:06 +0000 |
---|---|---|
committer | Greg Stark | 2010-03-01 00:04:06 +0000 |
commit | 73632828aca2d252b4ea14706da6d2514c2750f1 (patch) | |
tree | a403765c8db013abd11767d2fc40aa5d9dddaef6 | |
parent | 936c4af1c6876e09e914eca91c37949e6885b02e (diff) |
add EPERM to the list of return codes to expect from opening directories based on Vista results
-rw-r--r-- | src/port/copydir.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/port/copydir.c b/src/port/copydir.c index 0be12609fec..cf3e11f5bd1 100644 --- a/src/port/copydir.c +++ b/src/port/copydir.c @@ -11,7 +11,7 @@ * as a service. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/copydir.c,v 1.34 2010/02/28 21:05:30 stark Exp $ + * $PostgreSQL: pgsql/src/port/copydir.c,v 1.35 2010/03/01 00:04:06 stark Exp $ * *------------------------------------------------------------------------- */ @@ -234,8 +234,10 @@ fsync_fname(char *fname, bool isdir) O_RDONLY | PG_BINARY, S_IRUSR | S_IWUSR); - /* Some OSs don't allow us to open directories at all */ - if (fd < 0 && isdir && errno == EISDIR) + /* Some OSs don't allow us to open directories at all + * (Windows returns EPERM) + */ + if (fd < 0 && isdir && (errno == EISDIR || errno == EPERM)) return; else if (fd < 0) |