Readded SIGTERM handling into sigevent stuff. Fixes bugzilla #85.
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c
index 43aa5a4..d80aa26 100644
--- a/ospfd/ospf_main.c
+++ b/ospfd/ospf_main.c
@@ -163,6 +163,10 @@
     .signal = SIGINT,
     .handler = &sigint,
   },
+  {
+    .signal = SIGTERM,
+    .handler = &sigint,
+  },
 };
 
 /* OSPFd main routine. */