2
0
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:
Todd C. Miller
2004-10-04 16:07:19 +00:00
parent 5eb4895b55
commit 3c8145a923
16 changed files with 841 additions and 798 deletions

View File

@@ -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--;