From 6553360469bb3a9d4dc2d07de91573bbcf5a8785 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 23 Feb 2018 13:48:33 -0500 Subject: Return NOINPUT on execvp failure --- bin/hnel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hnel.c b/bin/hnel.c index 1f98c157..40ab7bbc 100644 --- a/bin/hnel.c +++ b/bin/hnel.c @@ -68,7 +68,7 @@ int main(int argc, char *argv[]) { if (!pid) { execvp(argv[3], &argv[3]); - err(EX_NOPERM, "%s", argv[3]); + err(EX_NOINPUT, "%s", argv[3]); } bool enable = true; -- cgit 1.4.1 den' name='showmsg' value='1'/> dontfiles
summary refs log tree commit diff
path: root/bin/cash/cd.c (unfollow)
Commit message (Collapse)Author
2019-02-08Add sh syntax to hiJune McEnroe
2019-02-08Use [] to quote special characters in regexJune McEnroe
This looks much cleaner than having to double-escape backslash.
2019-02-08Improve ANSI output and base IRC on itJune McEnroe
2019-02-08Add hi -nJune McEnroe
2019-02-08Elaborate hi man pageJune McEnroe
2019-02-08Use set for parent in hiJune McEnroe
2019-02-08Switch back to semantic keyword grouping in hiJune McEnroe
2019-02-08Match only the basename in hiJune McEnroe
2019-02-07Add mdoc syntax to hiJune McEnroe
2019-02-07Support multi-line C macros in hiJune McEnroe
2019-02-07Detect .mk files as makeJune McEnroe
2019-02-07Add make syntax to hiJune McEnroe
2019-02-07Add IRC output to hiJune McEnroe
2019-02-07Improve C syntax accuracy and add Format classJune McEnroe
2019-02-07Factor out hi checkJune McEnroe
Fix subexpression bounds check and compile pattends.
2019-02-07Add Escape class to hiJune McEnroe
2019-02-07Add Todo class and parent syntax constraintJune McEnroe