btrfs-progs: path-utils: rename is_path_exist

Rename so it fits the path_ group.

Signed-off-by: David Sterba <dsterba@suse.com>
master
David Sterba 2019-07-02 00:07:11 +02:00
parent facc0b130e
commit 116e27a87a
3 changed files with 4 additions and 4 deletions

View File

@ -81,7 +81,7 @@ int path_is_reg_file(const char *path)
return S_ISREG(statbuf.st_mode);
}
int is_path_exist(const char *path)
int path_exists(const char *path)
{
struct stat statbuf;
int ret;

View File

@ -30,7 +30,7 @@ char *__strncpy_null(char *dest, const char *src, size_t n);
int path_is_block_device(const char *file);
int path_is_mount_point(const char *file);
int is_path_exist(const char *file);
int path_exists(const char *file);
int path_is_reg_file(const char *path);
int is_same_loop_file(const char *a, const char *b);
int is_existing_blk_or_reg_file(const char *filename);

View File

@ -971,7 +971,7 @@ int main(int argc, char **argv)
while (dev_cnt-- > 0) {
file = argv[optind++];
if (source_dir_set && is_path_exist(file) == 0)
if (source_dir_set && path_exists(file) == 0)
ret = 0;
else if (path_is_block_device(file) == 1)
ret = test_dev_for_mkfs(file, force_overwrite);
@ -1056,7 +1056,7 @@ int main(int argc, char **argv)
int oflags = O_RDWR;
struct stat statbuf;
if (is_path_exist(file) == 0)
if (path_exists(file) == 0)
oflags |= O_CREAT;
fd = open(file, oflags, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP |