walk

A re-creation of the 9front utility walk(1) for UNIX
Log | Files | Refs

commit c9650d369f2b7682d7168cb5c2861c99a1818e43
parent 6f5586917ef7f9f4090c0348940185edc88268c5
Author: Jacob R. Edwards <n/a>
Date:   Mon,  5 Dec 2022 13:21:53 -0600

Fix fall-through comment

Diffstat:
Mwalk.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/walk.c b/walk.c @@ -236,8 +236,8 @@ main(int argc, char *argv[]) errno = EOPNOTSUPP; die(optarg); } - case 'E': /* fall-through */ + case 'E': if (optarg[strspn(optarg, "UGMamnpqsxDT")]) { errno = EINVAL; die(optarg);