]> git.puffer.fish Git - mirror/frr.git/commitdiff
Fix bugzilla #82.
authorhasso <hasso>
Wed, 17 Mar 2004 20:39:18 +0000 (20:39 +0000)
committerhasso <hasso>
Wed, 17 Mar 2004 20:39:18 +0000 (20:39 +0000)
ChangeLog
ripd/rip_main.c
zebra/main.c

index 59a3bffbc5ae551c73a139b5b78adefcf500e4e7..d2c2428bc6b811b1b13e4e1b7918e3a8fef2465e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-17 Jean-Yves Simon <lethalwp@tiscali.be>
+       
+       * zebra/main.c, ripd/rip_main.c: Fix typos sigusr1 -> sigint,
+         bugzilla #82.
+
 2004-03-16 David Young <dyoung@pobox.com>
 
        * (many) reference <lib/version.h> rather than "version.h",
index 5d6b0ad42469303630e15cd3c61799f6189e826a..abe6106725bfc1c74c57a9bb1dccc07b86967eff 100644 (file)
@@ -170,7 +170,7 @@ struct quagga_signal_t ripd_signals[] =
   },
   {
     .signal = SIGINT,
-    .handler = &sigusr1,
+    .handler = &sigint,
   },
 };  
 \f
index 07467bea15cb02d100d2b9b947369d1656259df4..9966c1728f2e241cd3b6a6da0f712d054c4c500e 100644 (file)
@@ -174,7 +174,7 @@ struct quagga_signal_t zebra_signals[] =
   },
   {
     .signal = SIGINT,
-    .handler = &sigusr1,
+    .handler = &sigint,
   },
 };
 \f