diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2018-11-22 08:59:12 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2018-11-22 08:59:12 +0000 |
commit | 386e6a237d1378c8800e3e33a20b37e4cfd12204 (patch) | |
tree | ed985ae6222b72527274baccb14fc270e9b2842a | |
parent | adfa351c2d0483023b8449de2829923f901b2d50 (diff) |
Output info on SIGUSR1 as well as SIGINFO to resync with portable.
-rw-r--r-- | regress/usr.bin/ssh/unittests/test_helper/test_helper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/usr.bin/ssh/unittests/test_helper/test_helper.c b/regress/usr.bin/ssh/unittests/test_helper/test_helper.c index 2ada35aeff6..d74120a4d94 100644 --- a/regress/usr.bin/ssh/unittests/test_helper/test_helper.c +++ b/regress/usr.bin/ssh/unittests/test_helper/test_helper.c @@ -1,4 +1,4 @@ -/* $OpenBSD: test_helper.c,v 1.9 2018/10/17 23:28:05 djm Exp $ */ +/* $OpenBSD: test_helper.c,v 1.10 2018/11/22 08:59:11 dtucker Exp $ */ /* * Copyright (c) 2011 Damien Miller <djm@mindrot.org> * @@ -227,6 +227,7 @@ test_start(const char *n) #ifdef SIGINFO signal(SIGINFO, siginfo); #endif + signal(SIGUSR1, siginfo); } void |