diff options
author | Timo Teräs <timo.teras@iki.fi> | 2015-03-10 15:46:05 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2015-03-10 15:47:13 +0200 |
commit | da6e455f7001def03300a398dbbc02bb03c7f4b9 (patch) | |
tree | 192d4250879cfa27645e830c9efd5507e18e51d6 /src/io.c | |
parent | be8e133c0b5ba0980d0debbf26b76a0b866689e7 (diff) | |
download | apk-tools-da6e455f7001def03300a398dbbc02bb03c7f4b9.tar.gz apk-tools-da6e455f7001def03300a398dbbc02bb03c7f4b9.tar.bz2 apk-tools-da6e455f7001def03300a398dbbc02bb03c7f4b9.tar.xz apk-tools-da6e455f7001def03300a398dbbc02bb03c7f4b9.zip |
rename file info related functions for consistency
Diffstat (limited to 'src/io.c')
-rw-r--r-- | src/io.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -529,8 +529,8 @@ int apk_blob_to_file(int atfd, const char *file, apk_blob_t b, unsigned int flag return r; } -int apk_file_get_info(int atfd, const char *filename, unsigned int flags, - struct apk_file_info *fi) +int apk_fileinfo_get(int atfd, const char *filename, unsigned int flags, + struct apk_file_info *fi) { struct stat64 st; struct apk_bstream *bs; @@ -586,7 +586,7 @@ int apk_file_get_info(int atfd, const char *filename, unsigned int flags, return 0; } -void apk_file_info_free(struct apk_file_info *fi) +void apk_fileinfo_free(struct apk_file_info *fi) { apk_xattr_array_free(&fi->xattrs); } |