Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/sbin/gpt Pull up the following revisions(s) (requested by...
details: https://anonhg.NetBSD.org/src/rev/f421af4c9db6
branches: netbsd-8
changeset: 445144:f421af4c9db6
user: sborrill <sborrill%NetBSD.org@localhost>
date: Mon Oct 15 08:04:04 2018 +0000
description:
Pull up the following revisions(s) (requested by mlelstv in ticket #1063):
sbin/gpt/gpt.c: revision 1.76
When changing entries, skip those that do not match the -L option.
Should fix PR 53668.
diffstat:
sbin/gpt/gpt.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r 355d133ab466 -r f421af4c9db6 sbin/gpt/gpt.c
--- a/sbin/gpt/gpt.c Mon Oct 15 03:13:46 2018 +0000
+++ b/sbin/gpt/gpt.c Mon Oct 15 08:04:04 2018 +0000
@@ -35,7 +35,7 @@
__FBSDID("$FreeBSD: src/sbin/gpt/gpt.c,v 1.16 2006/07/07 02:44:23 marcel Exp $");
#endif
#ifdef __RCSID
-__RCSID("$NetBSD: gpt.c,v 1.70.4.2 2018/05/04 16:24:46 martin Exp $");
+__RCSID("$NetBSD: gpt.c,v 1.70.4.3 2018/10/15 08:04:04 sborrill Exp $");
#endif
#include <sys/param.h>
@@ -1043,7 +1043,7 @@
utf16_to_utf8(ent->ent_name,
__arraycount(ent->ent_name),
utfbuf, __arraycount(utfbuf));
- if (strcmp((char *)find->label, (char *)utfbuf) == 0)
+ if (strcmp((char *)find->label, (char *)utfbuf) != 0)
continue;
}
Home |
Main Index |
Thread Index |
Old Index