mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-30 22:05:46 +00:00
No longer call it tracing, it is now "monitoring" which should be more
a obvious name to non-hackers.
This commit is contained in:
4
parse.c
4
parse.c
@@ -193,7 +193,7 @@ sudoers_lookup(pwflag)
|
||||
return(VALIDATE_OK |
|
||||
(no_passwd == TRUE ? FLAG_NOPASS : 0) |
|
||||
(no_execve == TRUE ? FLAG_NOEXEC : 0) |
|
||||
(trace_cmnd == TRUE ? FLAG_TRACE : 0));
|
||||
(monitor_cmnd == TRUE ? FLAG_MONITOR : 0));
|
||||
} else if ((runas_matches == TRUE && cmnd_matches == FALSE) ||
|
||||
(runas_matches == FALSE && cmnd_matches == TRUE)) {
|
||||
/*
|
||||
@@ -203,7 +203,7 @@ sudoers_lookup(pwflag)
|
||||
return(VALIDATE_NOT_OK |
|
||||
(no_passwd == TRUE ? FLAG_NOPASS : 0) |
|
||||
(no_execve == TRUE ? FLAG_NOEXEC : 0) |
|
||||
(trace_cmnd == TRUE ? FLAG_TRACE : 0));
|
||||
(monitor_cmnd == TRUE ? FLAG_MONITOR : 0));
|
||||
}
|
||||
}
|
||||
top--;
|
||||
|
Reference in New Issue
Block a user