1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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
|