mirror of https://github.com/MidnightCommander/mc
(is_exe): simple refactoring.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
de16ae9180
commit
07837de33b
|
@ -282,7 +282,7 @@ exist_file (const char *name)
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
is_exe (mode_t mode)
|
is_exe (mode_t mode)
|
||||||
{
|
{
|
||||||
return (gboolean) ((S_IXUSR & mode) || (S_IXGRP & mode) || (S_IXOTH & mode));
|
return ((mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* MC_UTIL_H */
|
#endif /* MC_UTIL_H */
|
||||||
|
|
Loading…
Reference in New Issue