| 156 | } |
| 157 | |
| 158 | static bool |
| 159 | isdir (char const *path) |
| 160 | { |
| 161 | struct stat sb; |
| 162 | if (stat (path, &sb) != 0) |
| 163 | error (EXIT_FAILURE, errno, _("cannot stat %s"), quoteaf (path)); |
| 164 | return S_ISDIR (sb.st_mode); |
| 165 | } |
| 166 | |
| 167 | static bool |
| 168 | process_path (char const *fname, int can_mode) |