mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-15 14:02:20 +00:00
Socket: Fix missing kprintf() args in setsockopt().
This commit is contained in:
parent
9df8d28542
commit
f008156dbf
Notes:
sideshowbarker
2024-07-19 14:00:03 +09:00
Author: https://github.com/awesomekling
Commit: f008156dbf
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ KResult Socket::setsockopt(int level, int option, const void* value, socklen_t v
|
||||||
m_receive_timeout = *(const timeval*)value;
|
m_receive_timeout = *(const timeval*)value;
|
||||||
return KSuccess;
|
return KSuccess;
|
||||||
default:
|
default:
|
||||||
kprintf("%s(%u): setsockopt() at SOL_SOCKET with unimplemented option %d\n", option);
|
kprintf("%s(%u): setsockopt() at SOL_SOCKET with unimplemented option %d\n", current->process().name().characters(), current->process().pid(), option);
|
||||||
return KResult(-ENOPROTOOPT);
|
return KResult(-ENOPROTOOPT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue