From 5a95bf085c6eea4edf25bb4e2fdd0ef95657b24d Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Sat, 27 May 2017 14:06:57 +0000 Subject: [PATCH] Use the usual FreeBSD spelling for the DHCP user class Reported by: lidl --- lib/libstand/bootp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libstand/bootp.c b/lib/libstand/bootp.c index 1f5cf9e2646..9b018fb643e 100644 --- a/lib/libstand/bootp.c +++ b/lib/libstand/bootp.c @@ -150,7 +150,7 @@ bootp(int sock) bp->bp_vend[19] = 8; /* len of the first user class */ bp->bp_vend[20] = 7; - bcopy("FREEBSD", &bp->bp_vend[21], 7); + bcopy("FreeBSD", &bp->bp_vend[21], 7); bp->bp_vend[28] = TAG_PARAM_REQ; bp->bp_vend[29] = 7; bp->bp_vend[30] = TAG_ROOTPATH;