diff options
author | Ron Yorston <rmy@pobox.com> | 2021-10-12 13:43:15 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-10-12 13:43:15 +0100 |
commit | b4b2b2c4fbba12561c5e988177bef699be306b26 (patch) | |
tree | af6ee5b26f0f775264eb8afb1af63415818e2a7e /include | |
parent | 0d127fbf4bbcd09f36740019ef129851464f8660 (diff) | |
download | busybox-w32-b4b2b2c4fbba12561c5e988177bef699be306b26.tar.gz busybox-w32-b4b2b2c4fbba12561c5e988177bef699be306b26.tar.bz2 busybox-w32-b4b2b2c4fbba12561c5e988177bef699be306b26.zip |
win32: rename is_absolute_path()
As the comment pointed out is_absolute_path() was misnamed. Rename
it to is_relative_path() and change the sense of all tests.
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index 74a65116c..6ace91470 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -579,4 +579,4 @@ void make_sparse(int fd, off_t start, off_t end); | |||
579 | int skip_ansi_emulation(int reset); | 579 | int skip_ansi_emulation(int reset); |
580 | int unix_path(const char *path); | 580 | int unix_path(const char *path); |
581 | int has_path(const char *file); | 581 | int has_path(const char *file); |
582 | int is_absolute_path(const char *path); | 582 | int is_relative_path(const char *path); |