summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2014-12-28 11:11:01 +0000
committerbluhm <bluhm@openbsd.org>2014-12-28 11:11:01 +0000
commit60563cd34bb97cec3efc468ce16216469931ec39 (patch)
tree5b91d5244bee671f6ddc0557b19f43abbd8a976d
parentconvert bcopy to memcpy in md5 and sha1. also be consistent about clearing (diff)
downloadwireguard-openbsd-60563cd34bb97cec3efc468ce16216469931ec39.tar.xz
wireguard-openbsd-60563cd34bb97cec3efc468ce16216469931ec39.zip
With revision 1.93 a space character got lost when printing the
signal action. Print the space again. OK jsg@
-rw-r--r--usr.bin/kdump/kdump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c
index 11c50a2ab5d..515c1f6ee68 100644
--- a/usr.bin/kdump/kdump.c
+++ b/usr.bin/kdump/kdump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kdump.c,v 1.95 2014/12/15 07:01:12 jmc Exp $ */
+/* $OpenBSD: kdump.c,v 1.96 2014/12/28 11:11:01 bluhm Exp $ */
/*-
* Copyright (c) 1988, 1993
@@ -1292,6 +1292,7 @@ static void
ktrpsig(struct ktr_psig *psig)
{
signame(psig->signo);
+ printf(" ");
if (psig->action == SIG_DFL)
(void)printf("SIG_DFL");
else {