summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index a170967..44e4a6d 100644
--- a/eval.c
+++ b/eval.c
@@ -197,6 +197,13 @@ bool eval_access(const struct expr *expr, struct eval_state *state) {
}
/**
+ * -capable test.
+ */
+bool eval_capable(const struct expr *expr, struct eval_state *state) {
+ return bfs_check_capabilities(state->ftwbuf);
+}
+
+/**
* Get the given timespec field out of a stat buffer.
*/
static const struct timespec *eval_stat_time(const struct expr *expr, struct eval_state *state) {