remove duplicate assignments; from Benjamin Baier
authorderaadt <deraadt@openbsd.org>
Fri, 29 May 2015 15:53:46 +0000 (15:53 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 29 May 2015 15:53:46 +0000 (15:53 +0000)
sbin/fsck/fsck.c

index 1600b49..2e12254 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fsck.c,v 1.35 2015/04/18 18:28:37 deraadt Exp $       */
+/*     $OpenBSD: fsck.c,v 1.36 2015/05/29 15:53:46 deraadt Exp $       */
 /*     $NetBSD: fsck.c,v 1.7 1996/10/03 20:06:30 christos Exp $        */
 
 /*
@@ -452,9 +452,6 @@ mangle(char *opts, int *argcp, const char ***argvp, int *maxargcp)
        int argc = *argcp, maxargc = *maxargcp;
        const char **argv = *argvp;
 
-       argc = *argcp;
-       maxargc = *maxargcp;
-
        for (s = opts; (p = strsep(&s, ",")) != NULL;) {
                /* always leave space for one more argument and the NULL */
                if (argc >= maxargc - 3) {