summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2016-12-13 12:01:54 +0200
committerPanu Matilainen <pmatilai@redhat.com>2016-12-13 12:02:19 +0200
commitecc9c61e4bfb76460054c7e3f58a24b16a5052d0 (patch)
treea3b9d0971bf0e1104e62d3f228ed6f6d31de3122
parent8cc3342cff0ef5721cda720809066a9ee4cb17eb (diff)
downloadrpm-ecc9c61e4bfb76460054c7e3f58a24b16a5052d0.tar.gz
Remove useless signal table defines
-rw-r--r--rpmio/rpmsq.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/rpmio/rpmsq.c b/rpmio/rpmsq.c
index 8515a0ebd..c979450b0 100644
--- a/rpmio/rpmsq.c
+++ b/rpmio/rpmsq.c
@@ -28,15 +28,10 @@ static struct rpmsig_s {
struct sigaction oact;
} rpmsigTbl[] = {
{ SIGINT, rpmsqAction },
-#define rpmsigTbl_sigint (&rpmsigTbl[0])
{ SIGQUIT, rpmsqAction },
-#define rpmsigTbl_sigquit (&rpmsigTbl[1])
{ SIGHUP, rpmsqAction },
-#define rpmsigTbl_sighup (&rpmsigTbl[3])
{ SIGTERM, rpmsqAction },
-#define rpmsigTbl_sigterm (&rpmsigTbl[4])
{ SIGPIPE, rpmsqAction },
-#define rpmsigTbl_sigpipe (&rpmsigTbl[5])
{ -1, NULL },
};