From f6f572ee9e4a24e5ced5944b46658e93a080cd11 Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Wed, 15 Sep 2021 15:06:27 +0200 Subject: [PATCH] Fixed file permissions --- src/raspberrypi/rascsi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raspberrypi/rascsi.cpp b/src/raspberrypi/rascsi.cpp index 8b127977..c7eb34bc 100644 --- a/src/raspberrypi/rascsi.cpp +++ b/src/raspberrypi/rascsi.cpp @@ -719,7 +719,7 @@ bool CreateImage(int fd, const PbCommand& command) } if (!strcasecmp(permission, "true")) { - permissions = S_IRUSR | S_IWUSR | S_IRGRP; + permissions = S_IRUSR | S_IRGRP | S_IROTH; } }