mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 00:04:30 +02:00
Shorten prctl code a tiny bit.
This commit is contained in:
parent
0fb7f59853
commit
0f916d39b0
@ -226,8 +226,7 @@ platform_disable_tracing(int strict)
|
||||
{
|
||||
#if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
|
||||
/* Disable ptrace on Linux without sgid bit */
|
||||
if (prctl(PR_SET_DUMPABLE, 0) != 0)
|
||||
if (strict)
|
||||
fatal("unable to make the process undumpable");
|
||||
if (prctl(PR_SET_DUMPABLE, 0) != 0 && strict)
|
||||
fatal("unable to make the process undumpable");
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user