diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-27 07:59:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-27 07:59:10 +0000 |
commit | c1d430696800997b89a1f9cd60d0e7895879dcbc (patch) | |
tree | 1dbc10ef3933fb1205aa5abbd8355bfee8618632 /usr.bin | |
parent | f70b9c62db0027472ef8cd9d124975f88b3aef20 (diff) |
native emul is now called "native"
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/kdump/kdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index f119f7f0f52..9aa862cec26 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -100,7 +100,7 @@ struct emulation { }; static struct emulation emulations[] = { - { "netbsd", syscallnames, SYS_MAXSYSCALL }, + { "native", syscallnames, SYS_MAXSYSCALL }, { "hpux", hpux_syscallnames, HPUX_SYS_MAXSYSCALL }, { "ibcs2", ibcs2_syscallnames, IBCS2_SYS_MAXSYSCALL }, { "linux", linux_syscallnames, LINUX_SYS_MAXSYSCALL }, @@ -129,7 +129,7 @@ main(argc, argv) register void *m; int trpoints = ALL_POINTS; - current = &emulations[0]; /* NetBSD */ + current = &emulations[0]; /* native */ while ((ch = getopt(argc, argv, "e:f:dlm:nRTt:")) != -1) switch (ch) { |