diff options
author | root <root@crdc-asr1k-trex.cisco.com> | 2015-10-01 23:03:32 -0400 |
---|---|---|
committer | root <root@crdc-asr1k-trex.cisco.com> | 2015-10-01 23:03:32 -0400 |
commit | a17963de76f9d99ee14f9a90526d4343360a1b45 (patch) | |
tree | 565e29f3f68fc40dd58aa610575f5c4a1819be5a | |
parent | e2b63ecc0544c82590c9aeb9a44a8a4bcb869cb6 (diff) |
fix a build error
-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(); |