nat: pool allocation function fix
Type: fix Change-Id: I75b20db66fb58e1724a212253c51315836079f4b Signed-off-by: Filip Varga <fivarga@cisco.com>
This commit is contained in:
@ -36,7 +36,7 @@ nat_add_del_ip4_pool_addr (nat_ip4_pool_t * pool, ip4_address_t addr,
|
||||
vlib_thread_main_t *tm = vlib_get_thread_main ();
|
||||
|
||||
// lookup for the address
|
||||
for (i = 0; i < vec_len (pool); i++)
|
||||
for (i = 0; i < vec_len (pool->pool_addr); i++)
|
||||
{
|
||||
if (pool->pool_addr[i].addr.as_u32 == addr.as_u32)
|
||||
{
|
||||
|
Reference in New Issue
Block a user