Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/usr.bin/mkubootimage Pull up following revision(s) (reque...
details: https://anonhg.NetBSD.org/src/rev/880f32a4c27f
branches: netbsd-8
changeset: 434374:880f32a4c27f
user: snj <snj%NetBSD.org@localhost>
date: Mon Nov 06 09:52:15 2017 +0000
description:
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
diffstat:
usr.bin/mkubootimage/mkubootimage.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (26 lines):
diff -r 13a8027764ad -r 880f32a4c27f usr.bin/mkubootimage/mkubootimage.c
--- a/usr.bin/mkubootimage/mkubootimage.c Mon Nov 06 09:37:24 2017 +0000
+++ b/usr.bin/mkubootimage/mkubootimage.c Mon Nov 06 09:52:15 2017 +0000
@@ -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 <jmcneill%invisible.ca@localhost>
@@ -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 @@
(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;
Home |
Main Index |
Thread Index |
Old Index