diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2014-05-02 17:15:58 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-05-02 17:15:58 +0200 |
commit | e765b5ac349a8f9305e52b3ab2c3ac78c17bf283 (patch) | |
tree | 2dec8a3b34450b7088ae7c3a4b374e953c0a4a73 /include | |
parent | 15a357e5962634c94ee322fee4da897312090a89 (diff) | |
download | busybox-w32-e765b5ac349a8f9305e52b3ab2c3ac78c17bf283.tar.gz busybox-w32-e765b5ac349a8f9305e52b3ab2c3ac78c17bf283.tar.bz2 busybox-w32-e765b5ac349a8f9305e52b3ab2c3ac78c17bf283.zip |
libbb: rename execable -> executable. No code changes
English speakers complained that it sounded awfully broken.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index 29cf6bc6d..afdee38c4 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -912,9 +912,9 @@ void FAST_FUNC update_utmp(pid_t pid, int new_type, const char *tty_name, const | |||
912 | #endif | 912 | #endif |
913 | 913 | ||
914 | 914 | ||
915 | int execable_file(const char *name) FAST_FUNC; | 915 | int file_is_executable(const char *name) FAST_FUNC; |
916 | char *find_execable(const char *filename, char **PATHp) FAST_FUNC; | 916 | char *find_executable(const char *filename, char **PATHp) FAST_FUNC; |
917 | int exists_execable(const char *filename) FAST_FUNC; | 917 | int executable_exists(const char *filename) FAST_FUNC; |
918 | 918 | ||
919 | /* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff), | 919 | /* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff), |
920 | * but it may exec busybox and call applet instead of searching PATH. | 920 | * but it may exec busybox and call applet instead of searching PATH. |