mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 19:19:44 +03:00
LibSQL: Don't do fchmod on OpenBSD
This commit is contained in:
parent
b510747e22
commit
f15aa539be
Notes:
sideshowbarker
2024-07-19 16:59:26 +09:00
Author: https://github.com/ghost Commit: https://github.com/SerenityOS/serenity/commit/f15aa539be2 Pull-request: https://github.com/SerenityOS/serenity/pull/17010
@ -37,7 +37,7 @@ static ErrorOr<int> create_database_socket(DeprecatedString const& socket_path)
|
||||
TRY(Core::System::fcntl(socket_fd, F_SETFD, FD_CLOEXEC));
|
||||
# endif
|
||||
|
||||
# if !defined(AK_OS_MACOS) && !defined(AK_OS_FREEBSD)
|
||||
# if !defined(AK_OS_MACOS) && !defined(AK_OS_FREEBSD) && !defined(AK_OS_OPENBSD)
|
||||
TRY(Core::System::fchmod(socket_fd, 0600));
|
||||
# endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user