aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2022-08-23 19:06:55 -0700
committerGuy Harris <gharris@sonic.net>2022-08-23 19:07:25 -0700
commit4b53f31d2d456787dd07ac3694f98955aec52eb8 (patch)
tree37343dc8dfd6a327d6ca5834f56fac5b68dbd624 /epan/dissectors/packet-ieee80211.c
parent66e19f9622ff74a27ac4d4183f1ec2ea84e54a7e (diff)
Fix comments to reflect reality.
It's an endpoint table, not a table of hosts.
Diffstat (limited to 'epan/dissectors/packet-ieee80211.c')
-rw-r--r--epan/dissectors/packet-ieee80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index a6595696d7..a1838b685a 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -8025,7 +8025,7 @@ wlan_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, con
/* Take two "add" passes per packet, adding for each direction, ensures that all
packets are counted properly (even if address is sending to itself)
- XXX - this could probably be done more efficiently inside hostlist_table */
+ XXX - this could probably be done more efficiently inside endpoint_table */
add_endpoint_table_data(hash, &whdr->src, 0, TRUE, 1, pinfo->fd->pkt_len, &wlan_host_dissector_info, ENDPOINT_NONE);
add_endpoint_table_data(hash, &whdr->dst, 0, FALSE, 1, pinfo->fd->pkt_len, &wlan_host_dissector_info, ENDPOINT_NONE);