minor code refactoring.

This commit is contained in:
Shreyas Zare
2024-09-14 16:26:13 +05:30
parent 283a31b766
commit 781d02fb48

View File

@@ -1,6 +1,6 @@
/* /*
Technitium DNS Server Technitium DNS Server
Copyright (C) 2023 Shreyas Zare (shreyas@technitium.com) Copyright (C) 2024 Shreyas Zare (shreyas@technitium.com)
This program is free software: you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
@@ -32,8 +32,8 @@ namespace DnsServerApp
if (args.Length == 1) if (args.Length == 1)
configFolder = args[0]; configFolder = args[0];
EventWaitHandle waitHandle = new ManualResetEvent(false); ManualResetEvent waitHandle = new ManualResetEvent(false);
EventWaitHandle exitHandle = new ManualResetEvent(false); ManualResetEvent exitHandle = new ManualResetEvent(false);
DnsWebService service = null; DnsWebService service = null;
try try