Module Name: src
Committed By: snj
Date: Mon Nov 6 09:52:15 UTC 2017
Modified Files:
src/usr.bin/mkubootimage [netbsd-8]: mkubootimage.c
Log Message:
Pull up following revision(s) (requested by jmcneill in ticket #347):
usr.bin/mkubootimage/mkubootimage.c: revision 1.22
add missing break after -m case
To generate a diff of this commit:
cvs rdiff -u -r1.18.8.2 -r1.18.8.3 src/usr.bin/mkubootimage/mkubootimage.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/mkubootimage/mkubootimage.c
diff -u src/usr.bin/mkubootimage/mkubootimage.c:1.18.8.2 src/usr.bin/mkubootimage/mkubootimage.c:1.18.8.3
--- src/usr.bin/mkubootimage/mkubootimage.c:1.18.8.2 Tue Jul 25 02:00:33 2017
+++ src/usr.bin/mkubootimage/mkubootimage.c Mon Nov 6 09:52:15 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: mkubootimage.c,v 1.18.8.2 2017/07/25 02:00:33 snj Exp $ */
+/* $NetBSD: mkubootimage.c,v 1.18.8.3 2017/11/06 09:52:15 snj Exp $ */
/*-
* Copyright (c) 2010 Jared D. McNeill <[email protected]>
@@ -30,7 +30,7 @@
#endif
#include <sys/cdefs.h>
-__RCSID("$NetBSD: mkubootimage.c,v 1.18.8.2 2017/07/25 02:00:33 snj Exp $");
+__RCSID("$NetBSD: mkubootimage.c,v 1.18.8.3 2017/11/06 09:52:15 snj Exp $");
#include <sys/mman.h>
#include <sys/stat.h>
@@ -410,6 +410,7 @@ main(int argc, char *argv[])
(num == ULONG_MAX || num == 0)))
errx(1, "illegal number -- %s", optarg);
image_magic = (uint32_t)num;
+ break;
case 'n': /* name */
image_name = strdup(optarg);
break;