Fix the -f option when passed multiple files.
authormillert <millert@openbsd.org>
Wed, 9 Feb 2022 15:53:35 +0000 (15:53 +0000)
committermillert <millert@openbsd.org>
Wed, 9 Feb 2022 15:53:35 +0000 (15:53 +0000)
Found by robert@

usr.bin/getcap/getcap.c

index 66d43d5..9ea99fc 100644 (file)
@@ -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 <millert@openbsd.org>
@@ -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')