summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar german772021-04-08 14:19:46 -0600
committerGravatar german772021-04-08 19:40:25 -0600
commit01928b1d1717871447bc81ba7461f68c314b9eae (patch)
tree0385d6c3ecb47d14a1557d10f9257262b1ea43af
parentnsd: Update to 12.x (diff)
downloadyuzu-01928b1d1717871447bc81ba7461f68c314b9eae.tar.gz
yuzu-01928b1d1717871447bc81ba7461f68c314b9eae.tar.xz
yuzu-01928b1d1717871447bc81ba7461f68c314b9eae.zip
sfdnsres: Use proper names
-rw-r--r--src/core/hle/service/sockets/sfdnsres.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/sockets/sfdnsres.cpp b/src/core/hle/service/sockets/sfdnsres.cpp
index 3a6329f56..5c71f423c 100644
--- a/src/core/hle/service/sockets/sfdnsres.cpp
+++ b/src/core/hle/service/sockets/sfdnsres.cpp
@@ -9,8 +9,8 @@ namespace Service::Sockets {
9 9
10SFDNSRES::SFDNSRES(Core::System& system_) : ServiceFramework{system_, "sfdnsres"} { 10SFDNSRES::SFDNSRES(Core::System& system_) : ServiceFramework{system_, "sfdnsres"} {
11 static const FunctionInfo functions[] = { 11 static const FunctionInfo functions[] = {
12 {0, nullptr, "SetDnsAddressesPrivate"}, 12 {0, nullptr, "SetDnsAddressesPrivateRequest"},
13 {1, nullptr, "GetDnsAddressPrivate"}, 13 {1, nullptr, "GetDnsAddressPrivateRequest"},
14 {2, nullptr, "GetHostByNameRequest"}, 14 {2, nullptr, "GetHostByNameRequest"},
15 {3, nullptr, "GetHostByAddrRequest"}, 15 {3, nullptr, "GetHostByAddrRequest"},
16 {4, nullptr, "GetHostStringErrorRequest"}, 16 {4, nullptr, "GetHostStringErrorRequest"},