From a7a91f68b63d462624d32e45eee163b540929eaf Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 27 Feb 2021 19:35:51 +0530 Subject: [PATCH] refactoring changes --- DnsServerCore/LogManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DnsServerCore/LogManager.cs b/DnsServerCore/LogManager.cs index 127e2632..04d4ff02 100644 --- a/DnsServerCore/LogManager.cs +++ b/DnsServerCore/LogManager.cs @@ -1,6 +1,6 @@ /* Technitium DNS Server -Copyright (C) 2020 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2021 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 @@ -415,7 +415,7 @@ namespace DnsServerCore OffsetStream oFS = new OffsetStream(fS, 0, limit); - using (Stream s = WebService.GetOutputStream(request, response)) + using (Stream s = DnsWebService.GetOutputStream(request, response)) { await oFS.CopyToAsync(s);