summaryrefslogtreecommitdiff
path: root/src/basic
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-05-11 11:09:37 +0200
committerSven Eden <yamakuzure@gmx.net>2018-08-24 16:47:08 +0200
commitbfd0ddb66c3640d70399ebce253f2a80285c29ca (patch)
tree70bd9955ab609da26629de4412b03391f1639807 /src/basic
parent0f556fa1afdb37b0f453c598ac1167d74cba8b2b (diff)
Use STRLEN in two places
Diffstat (limited to 'src/basic')
-rw-r--r--src/basic/fs-util.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c
index 24c447036..5fb8b88fd 100644
--- a/src/basic/fs-util.c
+++ b/src/basic/fs-util.c
@@ -251,7 +251,7 @@ int fchmod_umask(int fd, mode_t m) {
}
int fchmod_opath(int fd, mode_t m) {
- char procfs_path[strlen("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
+ char procfs_path[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
/* This function operates also on fd that might have been opened with
* O_PATH. Indeed fchmodat() doesn't have the AT_EMPTY_PATH flag like
@@ -1081,15 +1081,6 @@ int access_fd(int fd, int mode) {
return r;
}
-void unlink_tempfilep(char (*p)[]) {
- /* If the file is created with mkstemp(), it will (almost always)
- * change the suffix. Treat this as a sign that the file was
- * successfully created. We ignore both the rare case where the
- * original suffix is used and unlink failures. */
- if (!endswith(*p, ".XXXXXX"))
- (void) unlink(*p);
-}
-
int unlinkat_deallocate(int fd, const char *name, int flags) {
_cleanup_close_ int truncate_fd = -1;
struct stat st;