aboutsummaryrefslogtreecommitdiffstats
path: root/libexec_set_require_path.c
diff options
context:
space:
mode:
Diffstat (limited to 'libexec_set_require_path.c')
-rw-r--r--libexec_set_require_path.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libexec_set_require_path.c b/libexec_set_require_path.c
new file mode 100644
index 0000000..55dd369
--- /dev/null
+++ b/libexec_set_require_path.c
@@ -0,0 +1,18 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+
+void
+libexec_set_require_path(struct libexec_command *cmd, int require)
+{
+ if (!cmd)
+ return;
+ cmd->exec_how = require ? LIBEXEC_REQUIRE_PATH : LIBEXEC_ALLOW_NAME;
+ cmd->exec_fd = -1;
+}
+
+
+#else
+LIBEXEC_CONST__ int main(void) {return 0;} /* TODO test */
+#endif