diff options
author | Peter Szilagyi <peszilagyi@gmail.com> | 2009-04-13 13:31:14 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2010-02-03 05:09:28 +0100 |
commit | e3cd2efcf2c46825ea0a3f5962df581f37d5ebc6 (patch) | |
tree | 006b43099c15a31922e35096afc2a0f418eada08 | |
parent | 06b5df9dd9e472faed400e765c77397333a78bbf (diff) | |
download | quagga-e3cd2efcf2c46825ea0a3f5962df581f37d5ebc6.tar.bz2 quagga-e3cd2efcf2c46825ea0a3f5962df581f37d5ebc6.tar.xz |
isisd: fixes 3/7: include hash.h, not hash.c
Inclusion of the source file hash.c instead of the proper hash.h header file.
Signed-off-by: Fritz Reichmann <fritz@reichmann.nl>
-rw-r--r-- | isisd/isis_pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index 4ea3ebd6..0896d540 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -29,7 +29,7 @@ #include "log.h" #include "stream.h" #include "vty.h" -#include "hash.c" +#include "hash.h" #include "prefix.h" #include "if.h" #include "checksum.h" |