From ac24e2c9fbde52438e7f0a07e243069dc9859652 Mon Sep 17 00:00:00 2001 From: Ian Nartowicz Date: Fri, 30 May 2014 20:42:24 +0100 Subject: Preserve file permissions --- plugins/vorbis/vcedit.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'plugins') diff --git a/plugins/vorbis/vcedit.c b/plugins/vorbis/vcedit.c index 5709f89c..00a3a47f 100644 --- a/plugins/vorbis/vcedit.c +++ b/plugins/vorbis/vcedit.c @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include "vcedit.h" @@ -220,6 +221,11 @@ off_t vcedit_write_metadata(DB_FILE *in, const char *fname, int link, const char *lasterror = "file not opened for reading."; goto cleanup; } + struct stat stat_struct; + if (stat(fname, &stat_struct) || chmod(outname, stat_struct.st_mode)) { + *lasterror = "cannot transfer file permissions."; + goto cleanup; + } /* Copy through pages until we reach the right info header */ int codec_serial = 0; -- cgit v1.2.3