From: millert Date: Wed, 9 Feb 2022 15:53:35 +0000 (+0000) Subject: Fix the -f option when passed multiple files. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=be07b65e94b18cfa88e86233b6ca62200b90655b;p=openbsd Fix the -f option when passed multiple files. Found by robert@ --- diff --git a/usr.bin/getcap/getcap.c b/usr.bin/getcap/getcap.c index 66d43d5ac7d..9ea99fcafee 100644 --- a/usr.bin/getcap/getcap.c +++ b/usr.bin/getcap/getcap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getcap.c,v 1.8 2019/01/25 00:19:26 millert Exp $ */ +/* $OpenBSD: getcap.c,v 1.9 2022/02/09 15:53:35 millert Exp $ */ /* * Copyright (c) 2005 Todd C. Miller @@ -77,7 +77,7 @@ main(int argc, char *argv[]) if (pathvec != NULL) errx(1, "only one -f option may be specified"); for (n = 1, cp = optarg; (cp = strchr(cp, ':')); n++) - continue; + cp++; pathvec = calloc(n + 1, sizeof(char *)); for (n = 0; (pathvec[n] = strsep(&optarg, ":"));) { if (*pathvec[n] != '\0')