diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-complex-HTB-with-hash-filters.c | 3 | ||||
-rw-r--r-- | tests/test-create-bridge.c | 3 | ||||
-rw-r--r-- | tests/test-u32-filter-with-actions.c | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/tests/test-complex-HTB-with-hash-filters.c b/tests/test-complex-HTB-with-hash-filters.c index c2ac783..b1bf36e 100644 --- a/tests/test-complex-HTB-with-hash-filters.c +++ b/tests/test-complex-HTB-with-hash-filters.c @@ -517,6 +517,8 @@ int main() { struct nl_cache *link_cache; + uint32_t i; + if (!(sock = nl_socket_alloc())) { printf("Unable to allocate netlink socket\n"); exit(1); @@ -579,7 +581,6 @@ int main() { * each entry in hash table match a byte from IP address specified later by a hash key */ - uint32_t i; for (i = 1; i <= 0xf; i++) u32_add_ht(sock, link, 1, i, 256); diff --git a/tests/test-create-bridge.c b/tests/test-create-bridge.c index afd20e1..a9d9f2e 100644 --- a/tests/test-create-bridge.c +++ b/tests/test-create-bridge.c @@ -31,6 +31,7 @@ int main(int argc, char *argv[]) struct rtnl_link *link; struct nl_cache *link_cache; struct nl_sock *sk; + struct rtnl_link *ltap; int err; sk = nl_socket_alloc(); @@ -52,7 +53,7 @@ int main(int argc, char *argv[]) nl_cache_refill(sk, link_cache); link = rtnl_link_get_by_name(link_cache, TEST_BRIDGE_NAME); - struct rtnl_link *ltap = rtnl_link_get_by_name(link_cache, TEST_INTERFACE_NAME); + ltap = rtnl_link_get_by_name(link_cache, TEST_INTERFACE_NAME); if (!ltap) { fprintf(stderr, "You should create a tap interface before lunch this test (# tunctl -t %s)\n", TEST_INTERFACE_NAME); return -1; diff --git a/tests/test-u32-filter-with-actions.c b/tests/test-u32-filter-with-actions.c index 0ca216c..e9910e3 100644 --- a/tests/test-u32-filter-with-actions.c +++ b/tests/test-u32-filter-with-actions.c @@ -243,6 +243,7 @@ int main(void) int err; struct nl_cache *link_cache; struct rtnl_act *act, *act2; + uint32_t i; if (!(sock = nl_socket_alloc())) { printf("Unable to allocate netlink socket\n"); @@ -290,7 +291,6 @@ int main(void) * each entry in hash table match a byte from IP address specified later by a hash key */ - uint32_t i; for (i = 1; i <= 0xf; i++) u32_add_ht(sock, link, 1, i, 256); |