mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
Kernel: Fix typo in Socket::getsockopt tracing
This commit is contained in:
parent
ac11e646d0
commit
4bf88bb732
Notes:
sideshowbarker
2024-07-17 20:41:39 +09:00
Author: https://github.com/bgianfo
Commit: 4bf88bb732
Pull-request: https://github.com/SerenityOS/serenity/pull/11988
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ ErrorOr<void> Socket::getsockopt(OpenFileDescription&, int level, int option, Us
|
||||||
return copy_to_user(value_size, &size);
|
return copy_to_user(value_size, &size);
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
dbgln("setsockopt({}) at SOL_SOCKET not implemented.", option);
|
dbgln("getsockopt({}) at SOL_SOCKET not implemented.", option);
|
||||||
return ENOPROTOOPT;
|
return ENOPROTOOPT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue