X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=test-sigchain.c;h=42db234e871908514814c9b8dc50cc65d9b093cd;hb=8851f4800c15fe91b6a53e9e284787b983226c41;hp=8747deac627d5e3d57cd1f072f34802d29efa25e;hpb=4a16d072723b48699ea162da24eff05eba298834;p=git.git diff --git a/test-sigchain.c b/test-sigchain.c index 8747deac6..42db234e8 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; }