From 09f900bba2a67e3118e77975bedf4b1b57eaa425 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sun, 23 Jan 2022 16:56:26 +0530 Subject: [PATCH] VendorSpecificInformationOption: minor changes --- DnsServerCore/Dhcp/Options/VendorSpecificInformationOption.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DnsServerCore/Dhcp/Options/VendorSpecificInformationOption.cs b/DnsServerCore/Dhcp/Options/VendorSpecificInformationOption.cs index 9280da42..21cc2c10 100644 --- a/DnsServerCore/Dhcp/Options/VendorSpecificInformationOption.cs +++ b/DnsServerCore/Dhcp/Options/VendorSpecificInformationOption.cs @@ -1,6 +1,6 @@ /* Technitium DNS Server -Copyright (C) 2020 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2022 Shreyas Zare (shreyas@technitium.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -106,7 +106,7 @@ namespace DnsServerCore.Dhcp.Options public override string ToString() { - return BitConverter.ToString(_information).Replace("-", ":"); + return Convert.ToHexString(_information); } #endregion