Readded SIGTERM handling into sigevent stuff. Fixes bugzilla #85.
diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c
index 0ba19c2..54086e5 100644
--- a/bgpd/bgp_main.c
+++ b/bgpd/bgp_main.c
@@ -72,6 +72,10 @@
     .signal = SIGINT,
     .handler = &sigint,
   },
+  {
+    .signal = SIGTERM,
+    .handler = &sigint,
+  },
 };
 
 /* Configuration file and directory. */