diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-10-27 16:28:15 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-11-17 11:13:44 +0100 |
commit | 99be45a46fc9b45046a0f7b83a9f3e321f29d2da (patch) | |
tree | 725cda8b33bb95a6eb2dd5bf29f9ea0d405db178 /src/basic/path-util.h | |
parent | core: don't allow DefaultStandardOutput= be set to socket/fd:/file: (diff) | |
download | systemd-99be45a46fc9b45046a0f7b83a9f3e321f29d2da.tar.xz systemd-99be45a46fc9b45046a0f7b83a9f3e321f29d2da.zip |
fs-util: rename path_is_safe() → path_is_normalized()
Already, path_is_safe() refused paths container the "." dir. Doing that
isn't strictly necessary to be "safe" by most definitions of the word.
But it is necessary in order to consider a path "normalized". Hence,
"path_is_safe()" is slightly misleading a name, but
"path_is_normalize()" is more descriptive, hence let's rename things
accordingly.
No functional changes.
Diffstat (limited to 'src/basic/path-util.h')
-rw-r--r-- | src/basic/path-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/path-util.h b/src/basic/path-util.h index 546246595c..4b1410a21b 100644 --- a/src/basic/path-util.h +++ b/src/basic/path-util.h @@ -131,7 +131,7 @@ int parse_path_argument_and_warn(const char *path, bool suppress_root, char **ar char* dirname_malloc(const char *path); bool filename_is_valid(const char *p) _pure_; -bool path_is_safe(const char *p) _pure_; +bool path_is_normalized(const char *p) _pure_; char *file_in_same_dir(const char *path, const char *filename); |