diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-12-28 11:11:02 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-12-28 11:11:02 +0000 |
commit | 6a240eb94348c0f3972d65a60049014bd79c490d (patch) | |
tree | 05be37bc56287248853c476ce223eb1d7c0fbdd7 /usr.bin/kdump | |
parent | 39ac3b07d9afa339af9cc46d8435dd09200ff691 (diff) |
With revision 1.93 a space character got lost when printing the
signal action. Print the space again.
OK jsg@
Diffstat (limited to 'usr.bin/kdump')
-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 { |