summaryrefslogtreecommitdiff
path: root/sbin/fdisk/part.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2021-06-13 14:14:57 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2021-06-13 14:14:57 +0000
commit04ac3c66a5697b5873e627920514739b4e57c9d3 (patch)
treec88de15b1921e1ced1cbec24447b2eb190a2449e /sbin/fdisk/part.c
parentee5de62685a28f64a776c01433fbfcf707706e78 (diff)
UUID_STR_LEN+1 is less mysterious than '37'.
Diffstat (limited to 'sbin/fdisk/part.c')
-rw-r--r--sbin/fdisk/part.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fdisk/part.c b/sbin/fdisk/part.c
index 01daf776f61..c5a201c2c6a 100644
--- a/sbin/fdisk/part.c
+++ b/sbin/fdisk/part.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: part.c,v 1.83 2021/06/12 18:35:37 krw Exp $ */
+/* $OpenBSD: part.c,v 1.84 2021/06/13 14:14:56 krw Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
@@ -36,7 +36,7 @@ const char *ascii_id(int);
static const struct part_type {
int type;
char sname[14];
- char guid[37];
+ char guid[UUID_STR_LEN + 1];
} part_types[] = {
{ 0x00, "unused ", "00000000-0000-0000-0000-000000000000" },
{ 0x01, "FAT12 ", "ebd0a0a2-b9e5-4433-87c0-68b6b72699c7" },
@@ -391,7 +391,7 @@ PRT_fix_CHS(struct prt *part)
char *
PRT_uuid_to_typename(struct uuid *uuid)
{
- static char partition_type[37]; /* Room for a GUID if needed. */
+ static char partition_type[UUID_STR_LEN + 1];
char *uuidstr = NULL;
int i, entries, status;