summaryrefslogtreecommitdiff
path: root/test-sigchain.c
diff options
context:
space:
mode:
Diffstat (limited to 'test-sigchain.c')
-rw-r--r--test-sigchain.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test-sigchain.c b/test-sigchain.c
index 8747deac62..42db234e87 100644
--- a/test-sigchain.c
+++ b/test-sigchain.c
@@ -14,9 +14,9 @@ X(three)
#undef X
int main(int argc, char **argv) {
- sigchain_push(SIGINT, one);
- sigchain_push(SIGINT, two);
- sigchain_push(SIGINT, three);
- raise(SIGINT);
+ sigchain_push(SIGTERM, one);
+ sigchain_push(SIGTERM, two);
+ sigchain_push(SIGTERM, three);
+ raise(SIGTERM);
return 0;
}