diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2012-11-03 17:13:23 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2012-11-03 17:13:23 +0100 |
commit | 326fe3df2c659d62fc76f8579a414ba271e7f3e9 (patch) | |
tree | aa493a2e7b7d487749e2109de47b1b88b16ce3fb /tests | |
parent | bgpd: CVE-2012-1820, DoS in bgp_capability_orf() (diff) | |
download | frr-326fe3df2c659d62fc76f8579a414ba271e7f3e9.tar.xz frr-326fe3df2c659d62fc76f8579a414ba271e7f3e9.zip |
tests: fix missing array_size() include
* tests/test-sig.c: add #include "lib/memory.h" to get array_size()
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-sig.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-sig.c b/tests/test-sig.c index fe428dea9..df023fac6 100644 --- a/tests/test-sig.c +++ b/tests/test-sig.c @@ -1,6 +1,7 @@ #include <zebra.h> #include <sigevent.h> #include "lib/log.h" +#include "lib/memory.h" void sighup (void) |