diff options
author | 2014-12-28 11:11:01 +0000 | |
---|---|---|
committer | 2014-12-28 11:11:01 +0000 | |
commit | 60563cd34bb97cec3efc468ce16216469931ec39 (patch) | |
tree | 5b91d5244bee671f6ddc0557b19f43abbd8a976d | |
parent | convert bcopy to memcpy in md5 and sha1. also be consistent about clearing (diff) | |
download | wireguard-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.c | 3 |
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 { |