bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 3/5] Set an appropriate st_mode on symlinks


From: Jeremie Koenig
Subject: [PATCH 3/5] Set an appropriate st_mode on symlinks
Date: Mon, 16 Aug 2010 13:36:50 +0200

Signed-off-by: Jeremie Koenig <jk@jk.fr.eu.org>
---
 procfs_pid_files.c |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/procfs_pid_files.c b/procfs_pid_files.c
index 3008145..e2ad2fd 100644
--- a/procfs_pid_files.c
+++ b/procfs_pid_files.c
@@ -49,7 +49,16 @@ update_pid_entries (struct procfs_dir *dir, const char *name,
   struct stat stat;
 
   memset (&stat, 0, sizeof stat);
-  stat->st_mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH;
+  if (symlink_target)
+    {
+      stat.st_size = strlen (symlink_target);
+      stat.st_mode = S_IFLNK | 0777;
+    }
+  else
+    {
+      stat.st_size = 0;
+      stat.st_mode = S_IFREG | 0444;
+    }
 
   return update_entries_list (dir, name, &stat, timestamp, symlink_target);
 }
-- 
1.7.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]