artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95ca229
)
KTRC_CODE__SYSCALL is never set anymore, because __syscall() is gone.
author
deraadt
<deraadt@openbsd.org>
Fri, 17 Feb 2023 18:01:26 +0000
(18:01 +0000)
committer
deraadt
<deraadt@openbsd.org>
Fri, 17 Feb 2023 18:01:26 +0000
(18:01 +0000)
usr.bin/kdump/kdump.c
patch
|
blob
|
history
diff --git
a/usr.bin/kdump/kdump.c
b/usr.bin/kdump/kdump.c
index
3f5ce0c
..
86a68f0
100644
(file)
--- a/
usr.bin/kdump/kdump.c
+++ b/
usr.bin/kdump/kdump.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: kdump.c,v 1.15
5 2023/01/16 05:32:05
deraadt Exp $ */
+/* $OpenBSD: kdump.c,v 1.15
6 2023/02/17 18:01:26
deraadt Exp $ */
/*-
* Copyright (c) 1988, 1993
@@
-920,8
+920,6
@@
ktrsyscall(struct ktr_syscall *ktr, size_t ktrlen)
if (ktr->ktr_code & KTRC_CODE_SYSCALL)
(void)printf("(via syscall) ");
- else if (ktr->ktr_code & KTRC_CODE__SYSCALL)
- (void)printf("(via __syscall) ");
code = ktr->ktr_code & KTRC_CODE_MASK;
if (code >= SYS_MAXSYSCALL || code < 0)
(void)printf("[%d]", code);