Kernel: Fix typo in Socket::getsockopt tracing

This commit is contained in:
Brian Gianforcaro 2022-01-17 22:11:54 -08:00 committed by Andreas Kling
parent ac11e646d0
commit 4bf88bb732

View file

@ -231,7 +231,7 @@ ErrorOr<void> Socket::getsockopt(OpenFileDescription&, int level, int option, Us
return copy_to_user(value_size, &size);
}
default:
dbgln("setsockopt({}) at SOL_SOCKET not implemented.", option);
dbgln("getsockopt({}) at SOL_SOCKET not implemented.", option);
return ENOPROTOOPT;
}
}