diff options
author | 2015-10-15 11:47:54 +0300 | |
---|---|---|
committer | 2015-10-15 11:47:54 +0300 | |
commit | 76b476628c6ae840e2cdc4a25b420e4ff0f9f6bb (patch) | |
tree | 01dd891743d4d7e99496853a82cc20f6a0f06faa /src/main_dpdk.cpp | |
parent | 2dd1a4d85c559ddafe695b6d6d393ee086e1a3de (diff) | |
parent | da0bb3c60bd63d83b328f15f4eb3790f52436e21 (diff) |
Merge branch 'wofanli-tuple_gne_phase2_fixups'
Diffstat (limited to 'src/main_dpdk.cpp')
-rwxr-xr-x | src/main_dpdk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main_dpdk.cpp b/src/main_dpdk.cpp index 820fb3fa..0d03a207 100755 --- a/src/main_dpdk.cpp +++ b/src/main_dpdk.cpp @@ -4100,9 +4100,9 @@ int CGlobalPortCfg::start_send_master(){ if (CGlobalInfo::m_options.mac_file != "") { CGlobalInfo::m_options.preview.set_mac_ip_mapping_enable(true); m_fl.load_from_mac_file(CGlobalInfo::m_options.mac_file); - m_fl.is_mac_info_configured = true; + m_fl.m_mac_info.set_configured(true); } else { - m_fl.is_mac_info_configured = false; + m_fl.m_mac_info.set_configured(false); } m_expected_pps = m_fl.get_total_pps(); |