diff options
Diffstat (limited to 'init/property_service.cpp')
-rw-r--r-- | init/property_service.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init/property_service.cpp b/init/property_service.cpp index f9b4de94a..392d35c5b 100644 --- a/init/property_service.cpp +++ b/init/property_service.cpp @@ -1519,7 +1519,8 @@ void StartPropertyService(int* epoll_socket) { StartSendingMessages(); if (auto result = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, - false, 0666, 0, 0, {}); + /*passcred=*/false, /*should_listen=*/false, 0666, /*uid=*/0, + /*gid=*/0, /*socketcon=*/{}); result.ok()) { property_set_fd = *result; } else { |