diff options
author | Jeremy Allison <jra@samba.org> | 2002-01-14 23:12:45 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-01-14 23:12:45 +0000 |
commit | 73ee41adc64658e9d89e557de686fde4ef9365a2 (patch) | |
tree | 54a98ec456e3c7d4d1d225d3aea302afc7c49aa0 /source/include/vfs.h | |
parent | 1239feecf50ca4ab746c4fbeddd446989bf05721 (diff) | |
download | samba-73ee41adc64658e9d89e557de686fde4ef9365a2.tar.gz samba-73ee41adc64658e9d89e557de686fde4ef9365a2.tar.xz samba-73ee41adc64658e9d89e557de686fde4ef9365a2.zip |
Finished UNIX extensions - including realpath checks on link creation.
Now to add tests....
Jeremy.
Diffstat (limited to 'source/include/vfs.h')
-rw-r--r-- | source/include/vfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/include/vfs.h b/source/include/vfs.h index b0dcd7ba84d..ee4bdea6022 100644 --- a/source/include/vfs.h +++ b/source/include/vfs.h @@ -91,6 +91,7 @@ struct vfs_ops { int (*readlink)(struct connection_struct *conn, const char *path, char *buf, size_t bufsiz); int (*link)(struct connection_struct *conn, const char *oldpath, const char *newpath); int (*mknod)(struct connection_struct *conn, const char *path, mode_t mode, SMB_DEV_T dev); + char *(*realpath)(struct connection_struct *conn, const char *path, char *resolved_path); /* NT ACL operations. */ |