mirror of https://github.com/PCSX2/pcsx2.git
DEV9: Formatting
This commit is contained in:
parent
02f27f8cbc
commit
839ea61d55
|
@ -202,7 +202,7 @@ namespace InternalServers
|
|||
bool DNS_Server::CheckHostList(std::string url, DNS_State* state)
|
||||
{
|
||||
std::transform(url.begin(), url.end(), url.begin(),
|
||||
[](unsigned char c) { return std::tolower(c); });
|
||||
[](unsigned char c) { return std::tolower(c); });
|
||||
|
||||
auto f = hosts.find(url);
|
||||
if (f != hosts.end())
|
||||
|
|
|
@ -419,9 +419,7 @@ std::vector<AdapterEntry> PCAPAdapter::GetAdapters()
|
|||
pcap_if_t* d;
|
||||
|
||||
if (pcap_findalldevs(&alldevs, errbuf) == -1)
|
||||
{
|
||||
return nic;
|
||||
}
|
||||
|
||||
d = alldevs;
|
||||
while (d != NULL)
|
||||
|
|
Loading…
Reference in New Issue