From 8a6219e54379911605aed860519e0194f1433b72 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sun, 5 Feb 2023 08:09:16 +0000 Subject: Remove `-sysperms` option This change effectively reverts commits from https://github.com/bitcoin/bitcoin/pull/4286. Users, who rely on non-default access permissions, should use `chmod` command. --- src/rpc/request.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rpc') diff --git a/src/rpc/request.cpp b/src/rpc/request.cpp index 0bb5533d71..f554ee2116 100644 --- a/src/rpc/request.cpp +++ b/src/rpc/request.cpp @@ -86,7 +86,7 @@ bool GenerateAuthCookie(std::string *cookie_out) std::string cookie = COOKIEAUTH_USER + ":" + HexStr(rand_pwd); /** the umask determines what permissions are used to create this file - - * these are set to 077 in init.cpp unless overridden with -sysperms. + * these are set to 077 in init.cpp. */ std::ofstream file; fs::path filepath_tmp = GetAuthCookieFile(true); -- cgit v1.2.3