summaryrefslogtreecommitdiff
path: root/debian/patches/dir_acces_fix.patch
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2010-08-01 12:43:52 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2010-08-01 12:45:12 +0200
commit2785afe572b463d578e023c6d4668aae888e09a5 (patch)
tree995dfb2f576d9c40d59d422f48127e25f1ef2cd3 /debian/patches/dir_acces_fix.patch
parent9de2a32ced4076497e26ebfcffbd8c3ec260699b (diff)
New upstream 20100701 snapshot.
- debian/patches/dir_acces_fix.patch: Remove patch, merged upstream. - debian/patches/exec_fix.patch: Likewise. - debian/patches/libdiskfs-rename.patch: Likewise. - debian/patches/libpthread_mutex_owner.patch: Likewise. - debian/patches/libpthread_recursive_mutex_initializer.patch: Likewise. - debian/patches/libpthread_setcancel.patch: Likewise. - debian/patches/pfinet-gcc-4.3-fix.patch: Likewise. - debian/patches/procfs.patch: Likewise. - debian/patches/libpthread_cancel_init.patch: Likewise - debian/patches/libpthread_kill_0.patch: Likewise - debian/patches/console_current_vcs.patch: Likewise - debian/patches/hurd_console_startup.patch: Likewise - debian/patches/MAKEDEV.patch: Likewise - debian/patches/tmpfs.patch: Likewise - debian/patches/libpthread_procfs.patch: New patch, to enable libpthread and procfs build.
Diffstat (limited to 'debian/patches/dir_acces_fix.patch')
-rw-r--r--debian/patches/dir_acces_fix.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/patches/dir_acces_fix.patch b/debian/patches/dir_acces_fix.patch
deleted file mode 100644
index 964b39a5..00000000
--- a/debian/patches/dir_acces_fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
----
- libfshelp/perms-access.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/libfshelp/perms-access.c
-+++ b/libfshelp/perms-access.c
-@@ -30,7 +30,7 @@ fshelp_access (struct stat *st, int op,
- {
- int gotit;
- if (idvec_contains (user->uids, 0))
-- gotit = (op != S_IEXEC) || (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH));
-+ gotit = (op != S_IEXEC) || !S_ISREG(st->st_mode) || (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH));
- else if (user->uids->num == 0 && (st->st_mode & S_IUSEUNK))
- gotit = st->st_mode & (op << S_IUNKSHIFT);
- else if (!fshelp_isowner (st, user))