From 46e93295688385af6b4b5d17f97675087a90aba4 Mon Sep 17 00:00:00 2001 From: Timo Teras Date: Wed, 5 Aug 2009 13:13:52 +0300 Subject: io: flag for following symlinks on fstat usually we are interested on the actual file's length. but audit is interested about the link. so add a flag for this and use it in audit. --- src/apk_io.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/apk_io.h') diff --git a/src/apk_io.h b/src/apk_io.h index 759bec4..53b91b3 100644 --- a/src/apk_io.h +++ b/src/apk_io.h @@ -88,7 +88,9 @@ size_t apk_ostream_write_string(struct apk_ostream *ostream, const char *string) apk_blob_t apk_blob_from_istream(struct apk_istream *istream, size_t size); apk_blob_t apk_blob_from_file(int atfd, const char *file); -int apk_file_get_info(int atfd, const char *filename, int checksum, +#define APK_FI_NOFOLLOW 0x80000000 + +int apk_file_get_info(int atfd, const char *filename, unsigned int flags, struct apk_file_info *fi); int apk_url_download(const char *url, int atfd, const char *file); const char *apk_url_local_file(const char *url); -- cgit v1.2.3