Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Step:15-SP4
sudo.25989
sudo-1.9.9-honor-T_opt.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File sudo-1.9.9-honor-T_opt.patch of Package sudo.25989
From 1f3815c4fb3f282250ff30626979d224e30b4b05 Mon Sep 17 00:00:00 2001 From: Jaroslav Jindrak <dzejrou@gmail.com> Date: Wed, 9 Feb 2022 17:37:26 +0100 Subject: [PATCH] Do not unset user timeout when no default timeout is set. --- plugins/sudoers/policy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sudoers/policy.c b/plugins/sudoers/policy.c index 26c4be3fe..0482b58dd 100644 --- a/plugins/sudoers/policy.c +++ b/plugins/sudoers/policy.c @@ -865,7 +865,7 @@ sudoers_policy_store_result(bool accepted, char *argv[], char *envp[], if (def_command_timeout > 0 || user_timeout > 0) { int timeout = user_timeout; - if (timeout == 0 || def_command_timeout < timeout) + if (timeout == 0 || (def_command_timeout > 0 && def_command_timeout < timeout)) timeout = def_command_timeout; if (asprintf(&command_info[info_len++], "timeout=%u", timeout) == -1) goto oom;
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor