From 493aa139460d27930d60a92380691ef4e2dde0bd Mon Sep 17 00:00:00 2001 From: millert Date: Sat, 3 Aug 2024 22:23:32 +0000 Subject: [PATCH] Set system ID field in the PVD to OpenBSD This matches what we use in mkybrid. From Crystal Kolipe. --- usr.sbin/makefs/cd9660.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/makefs/cd9660.c b/usr.sbin/makefs/cd9660.c index 9fbcc5d0dbc..05b45ed2a48 100644 --- a/usr.sbin/makefs/cd9660.c +++ b/usr.sbin/makefs/cd9660.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660.c,v 1.23 2022/01/11 05:34:32 jsg Exp $ */ +/* $OpenBSD: cd9660.c,v 1.24 2024/08/03 22:23:32 millert Exp $ */ /* $NetBSD: cd9660.c,v 1.53 2016/11/25 23:02:44 christos Exp $ */ /* @@ -218,7 +218,7 @@ cd9660_set_defaults(iso9660_disk *diskStructure) memset(diskStructure->primaryDescriptor.abstract_file_id, 0x20,37); memset(diskStructure->primaryDescriptor.bibliographic_file_id, 0x20,37); - strlcpy(diskStructure->primaryDescriptor.system_id,"NetBSD", sizeof(diskStructure->primaryDescriptor.system_id)); + strlcpy(diskStructure->primaryDescriptor.system_id,"OpenBSD", sizeof(diskStructure->primaryDescriptor.system_id)); cd9660_defaults_set = 1; -- 2.20.1