Readded SIGTERM handling into sigevent stuff. Fixes bugzilla #85.
diff --git a/ripd/rip_main.c b/ripd/rip_main.c
index abe6106..530b13c 100644
--- a/ripd/rip_main.c
+++ b/ripd/rip_main.c
@@ -172,6 +172,10 @@
     .signal = SIGINT,
     .handler = &sigint,
   },
+  {
+    .signal = SIGTERM,
+    .handler = &sigint,
+  },
 };  
 
 /* Main routine of ripd. */