aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/security
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2001-04-13 16:09:40 +0000
committerRobert Watson <rwatson@FreeBSD.org>2001-04-13 16:09:40 +0000
commit72919d5f6dd49377ff84d6d1c32eaaf198366655 (patch)
treefa076dfb3952b101c2fa6638ab36879052b75d47 /tools/regression/security
parent991bcf5c04fb84915c26aa884a911cd277929cee (diff)
downloadsrc-72919d5f6dd49377ff84d6d1c32eaaf198366655.tar.gz
src-72919d5f6dd49377ff84d6d1c32eaaf198366655.zip
o s/debug/ptrace/ since shortly there will be tests involving other
forms of debugging. Obtained from: TrustedBSD Project
Notes
Notes: svn path=/head/; revision=75482
Diffstat (limited to 'tools/regression/security')
-rw-r--r--tools/regression/security/proc_to_proc/scenario.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/regression/security/proc_to_proc/scenario.c b/tools/regression/security/proc_to_proc/scenario.c
index 048c83a740db..242764db7b4f 100644
--- a/tools/regression/security/proc_to_proc/scenario.c
+++ b/tools/regression/security/proc_to_proc/scenario.c
@@ -53,7 +53,7 @@ struct cred {
*/
struct scenario {
struct cred *sc_cred1, *sc_cred2; /* credentials of p1 and p2 */
- int sc_candebug_errno; /* desired ptrace failure */
+ int sc_canptrace_errno; /* desired ptrace failure */
int sc_cansighup_errno; /* desired SIGHUP failure */
int sc_cansigsegv_errno; /* desired SIGSEGV failure */
int sc_cansee_errno; /* desired getprio failure */
@@ -86,7 +86,7 @@ static struct cred creds[] = {
* Table of scenarios.
*/
static const struct scenario scenarios[] = {
-/* cred1 cred2 debug sighup sigsegv see sched name */
+/* cred1 cred2 ptrace sighup sigsegv see sched name */
{ &creds[0], &creds[0], 0, 0, 0, 0, 0, "0. priv on priv"},
{ &creds[0], &creds[1], 0, 0, 0, 0, 0, "1. priv on priv"},
{ &creds[1], &creds[0], 0, 0, 0, 0, 0, "2. priv on priv"},
@@ -329,7 +329,7 @@ enact_scenario(int scenario)
error = errno;
name = "ptrace";
desirederror =
- scenarios[scenario].sc_candebug_errno;
+ scenarios[scenario].sc_canptrace_errno;
break;
case LOOP_SIGHUP:
error = kill(pid1, SIGHUP);