From 6fb58d1c5c859402871e1d546f7fea1a91dd2995 Mon Sep 17 00:00:00 2001 From: John Schmidt Date: Mon, 7 Apr 2014 18:04:18 +0200 Subject: Change prefix from `os_*` to `path_*` --- src/os_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os_unix.c') diff --git a/src/os_unix.c b/src/os_unix.c index 9727140597..3a3ecda276 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1418,7 +1418,7 @@ int flags; /* EW_* flags */ continue; /* Skip files that are not executable if we check for that. */ - if (!dir && (flags & EW_EXEC) && !os_can_exe((*file)[i])) + if (!dir && (flags & EW_EXEC) && !path_can_exe((*file)[i])) continue; p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir)); -- cgit