With revision 1.93 a space character got lost when printing the
authorbluhm <bluhm@openbsd.org>
Sun, 28 Dec 2014 11:11:01 +0000 (11:11 +0000)
committerbluhm <bluhm@openbsd.org>
Sun, 28 Dec 2014 11:11:01 +0000 (11:11 +0000)
signal action.  Print the space again.
OK jsg@

usr.bin/kdump/kdump.c

index 11c50a2..515c1f6 100644 (file)
@@ -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 {