This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository efm2.

View the commit online.

commit 6ca9a6ecdef5813c4daeb839e8cf7bf8ae4f9b22
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Mon Jun 17 09:05:49 2024 +0100

    oops - copy perms from parent did the wrong thing. fix!
---
 src/shared/util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/shared/util.c b/src/shared/util.c
index d24b6d1..8460430 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -11,7 +11,7 @@ util_file_mode_parent_copy(const char *file, Eina_Bool is_dir)
   char       *s, *dir_parent = strdup(file);
 
   if (!dir_parent) return;
-  s = strrchr(file, '/');
+  s = strrchr(dir_parent, '/');
   if (!s) goto err;
   s[1] = '\0'; // get parent dir by truncating after /
   if (lstat(dir_parent, &st) == 0)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to