diff options
author | hasso <hasso> | 2004-09-26 16:11:14 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-26 16:11:14 +0000 |
commit | ede78a7ac747f8ba561b621c680eae76c4d5561e (patch) | |
tree | c60d78fd77dc4dcf9d38a0cc2eb2fd68b388a30b | |
parent | 052fe22a25dfb0cbc1a23cba5efdcda98f26a627 (diff) | |
download | quagga-ede78a7ac747f8ba561b621c680eae76c4d5561e.tar.bz2 quagga-ede78a7ac747f8ba561b621c680eae76c4d5561e.tar.xz |
Fix compiler warning.
-rw-r--r-- | ripd/ChangeLog | 4 | ||||
-rw-r--r-- | ripd/ripd.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ripd/ChangeLog b/ripd/ChangeLog index 1b018ee6..4ca580b9 100644 --- a/ripd/ChangeLog +++ b/ripd/ChangeLog @@ -1,3 +1,7 @@ +2004-09-26 Hasso Tepper <hasso at quagga.net> + + * ripd.c: Fix compiler warning. + 2004-09-23 Hasso Tepper <hasso at quagga.net> * *.[c|h]: list -> struct list *, listnode -> struct listnode *. diff --git a/ripd/ripd.c b/ripd/ripd.c index 6b79a16b..acf0e7d5 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -31,6 +31,7 @@ #include "stream.h" #include "filter.h" #include "sockunion.h" +#include "sockopt.h" #include "routemap.h" #include "if_rmap.h" #include "plist.h" |