aboutsummaryrefslogtreecommitdiff
path: root/patches/0026-rsync-Use-standard-S_ISVTX-instead-of-S_ISTXT.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/0026-rsync-Use-standard-S_ISVTX-instead-of-S_ISTXT.patch')
-rw-r--r--patches/0026-rsync-Use-standard-S_ISVTX-instead-of-S_ISTXT.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/patches/0026-rsync-Use-standard-S_ISVTX-instead-of-S_ISTXT.patch b/patches/0026-rsync-Use-standard-S_ISVTX-instead-of-S_ISTXT.patch
deleted file mode 100644
index 39bc650..0000000
--- a/patches/0026-rsync-Use-standard-S_ISVTX-instead-of-S_ISTXT.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From b8ea0a7fc75f79d89f9f225da1112f477419d0bd Mon Sep 17 00:00:00 2001
-From: Michael Forney <mforney@mforney.org>
-Date: Fri, 14 Jun 2019 12:42:15 -0700
-Subject: [PATCH] rsync: Use standard S_ISVTX instead of S_ISTXT
-
----
- usr.bin/rsync/receiver.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/usr.bin/rsync/receiver.c b/usr.bin/rsync/receiver.c
-index 5ffd3458b74..51f9ddf6a5c 100644
---- a/usr.bin/rsync/receiver.c
-+++ b/usr.bin/rsync/receiver.c
-@@ -86,7 +86,7 @@ rsync_set_metadata(struct sess *sess, int newfile,
- "to user.group: %u.%u", f->path, uid, gid);
- } else
- LOG4("%s: updated uid and/or gid", f->path);
-- mode &= ~(S_ISTXT | S_ISUID | S_ISGID);
-+ mode &= ~(S_ISVTX | S_ISUID | S_ISGID);
- }
-
- /* Conditionally adjust file permissions. */
-@@ -147,7 +147,7 @@ rsync_set_metadata_at(struct sess *sess, int newfile, int rootfd,
- "to user.group: %u.%u", f->path, uid, gid);
- } else
- LOG4("%s: updated uid and/or gid", f->path);
-- mode &= ~(S_ISTXT | S_ISUID | S_ISGID);
-+ mode &= ~(S_ISVTX | S_ISUID | S_ISGID);
- }
-
- /* Conditionally adjust file permissions. */
---
-2.23.0
-