fucking shit

This commit is contained in:
lizzie
2026-08-18 19:36:21 +00:00
parent c719503f27
commit f375a3594c
+2 -2
View File
@@ -195,7 +195,7 @@ void BSD_USA::SocketExempt(HLERequestContext& ctx) {
LOG_DEBUG(Service, "called. domain={} type={} protocol={}", domain, type, protocol);
auto [fd, bsd_errno] = SocketImpl(Network::Domain(domain), Network::Type(type), Network::Protocol(protocol));
if (bsd_errno == Network::Errno::SUCCESS) {
if (bsd_errno == Network::Errno::E_SUCCESS) {
bsd_errno = ShutdownImpl(fd, 0);
}
@@ -486,7 +486,7 @@ void BSD_USA::DuplicateSocket(HLERequestContext& ctx) {
if (is_user) {
rb.PushRaw(OutputParameters{
.ret = 0,
.bsd_errno = Network::Errno::INVAL,
.bsd_errno = Network::Errno::E_INVAL,
});
return;
}