Skip to content
Snippets Groups Projects
Commit 070e0e8b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

prevent compiler warnings on non-win32 platforms

parent 2ed0728c
No related branches found
No related tags found
No related merge requests found
......@@ -406,7 +406,7 @@ DhcpNameServer
{
status = config_nameserver(&servers, &nservers, buf);
if (status == ARES_SUCCESS)
goto okay;
goto okay;
}
if (IsNT)
......@@ -552,7 +552,9 @@ DhcpNameServer
}
/* If we got any name server entries, fill them in. */
#ifdef WIN32
okay:
#endif
if (servers)
{
channel->servers = servers;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment