diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2024-08-03 22:23:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2024-08-03 22:23:33 +0000 |
commit | d6231f9ec157e9d1fba3df3edf8e2da714da5937 (patch) | |
tree | c05fef0e3879018857bf55c09735306893b39716 /usr.sbin | |
parent | cf142bcbada6c076b7b33ccc5d3cca55ff781719 (diff) |
Set system ID field in the PVD to OpenBSD
This matches what we use in mkybrid. From Crystal Kolipe.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/makefs/cd9660.c | 4 |
1 files 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; |