mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[IPHLPAPI]
- Fix some code left over from a previous attempt svn path=/trunk/; revision=47294
This commit is contained in:
@@ -30,19 +30,15 @@ DWORD getDhcpInfoForAdapter(DWORD AdapterIndex,
|
||||
DWORD Status, Version = 0;
|
||||
|
||||
Status = DhcpCApiInitialize(&Version);
|
||||
if (Status == ERROR_NOT_READY)
|
||||
if (Status != ERROR_SUCCESS)
|
||||
{
|
||||
/* The DHCP server isn't running yet */
|
||||
/* We assume that the DHCP service isn't running yet */
|
||||
*DhcpEnabled = FALSE;
|
||||
*DhcpServer = htonl(INADDR_NONE);
|
||||
*LeaseObtained = 0;
|
||||
*LeaseExpires = 0;
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
else if (Status != ERROR_SUCCESS)
|
||||
{
|
||||
return Status;
|
||||
}
|
||||
|
||||
Status = DhcpRosGetAdapterInfo(AdapterIndex, DhcpEnabled, DhcpServer,
|
||||
LeaseObtained, LeaseExpires);
|
||||
|
||||
Reference in New Issue
Block a user