summaryrefslogtreecommitdiff
path: root/pgsql.h
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-04-17 13:49:25 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-04-17 13:49:25 +0200
commitf945cbe7e67033acd824553d45fef809642f318f (patch)
treeefbfffa996147899163dd8e7d94d66f6b2def7e9 /pgsql.h
parentbe2d2f0c1369d84759f4ad269088f14109eb3aff (diff)
downloadpgfuse-f945cbe7e67033acd824553d45fef809642f318f.tar.gz
pgfuse-f945cbe7e67033acd824553d45fef809642f318f.tar.bz2
fixed buffer overflow in symlink reading
Diffstat (limited to 'pgsql.h')
-rw-r--r--pgsql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgsql.h b/pgsql.h
index 45f4fc5..3e14f5f 100644
--- a/pgsql.h
+++ b/pgsql.h
@@ -31,7 +31,7 @@ typedef struct PgMeta {
mode_t mode; /* type and permissions of file/directory */
uid_t uid; /* owner of the file/directory */
gid_t gid; /* group owner of the file/directory */
- struct timespec ctime; /* creation time */
+ struct timespec ctime; /* last status change time */
struct timespec mtime; /* last modification time */
struct timespec atime; /* last access time */
} PgMeta;