diff options
author | Sean Edmond <seanedmond@microsoft.com> | 2023-05-18 12:35:41 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-14 15:48:45 -0400 |
commit | 2f7c7159ea4c0e5c2aa7671c5b5a2889d0abe7ce (patch) | |
tree | 438153aa69df3c1af0dc04848b507f5a833787dd /net | |
parent | 1b3117db3ecdb0ec281899a00c8662b22059c01b (diff) | |
download | u-boot-2f7c7159ea4c0e5c2aa7671c5b5a2889d0abe7ce.tar.gz u-boot-2f7c7159ea4c0e5c2aa7671c5b5a2889d0abe7ce.tar.bz2 u-boot-2f7c7159ea4c0e5c2aa7671c5b5a2889d0abe7ce.zip |
net: dhcp6: Fix VCI string
Change VCI string from "U-boot" to "U-Boot".
Signed-off-by: Sean Edmond <seanedmond@microsoft.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/dhcpv6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dhcpv6.h b/net/dhcpv6.h index 80ca520432..65c8e4c71d 100644 --- a/net/dhcpv6.h +++ b/net/dhcpv6.h @@ -38,7 +38,7 @@ #define DUID_MAX_SIZE DUID_LL_SIZE /* only supports DUID-LL currently */ /* vendor-class-data to send in vendor clas option */ -#define DHCP6_VCI_STRING "U-boot" +#define DHCP6_VCI_STRING "U-Boot" #define DHCP6_MULTICAST_ADDR "ff02::1:2" /* DHCP multicast address */ |