Change prefix from os_* to path_*

This commit is contained in:
John Schmidt
2014-04-07 18:04:18 +02:00
committed by Thiago de Arruda
parent aa7218b646
commit 6fb58d1c5c
11 changed files with 47 additions and 47 deletions

View File

@@ -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));