nat: pool allocation function fix

Type: fix

Change-Id: I75b20db66fb58e1724a212253c51315836079f4b
Signed-off-by: Filip Varga <fivarga@cisco.com>
This commit is contained in:
Filip Varga
2020-02-03 12:14:29 +01:00
committed by Ole Trøan
parent 59b6c0c86d
commit 9fbacbc56b

View File

@ -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)
{