diff options
Diffstat (limited to 'proto_80211_mac_hdr.c')
-rw-r--r-- | proto_80211_mac_hdr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto_80211_mac_hdr.c b/proto_80211_mac_hdr.c index c7d4c28..1a4f7cc 100644 --- a/proto_80211_mac_hdr.c +++ b/proto_80211_mac_hdr.c @@ -3083,7 +3083,8 @@ static const char *mgt_sub(u8 subtype, struct pkt_buff *pkt, *get_content = mgmt_probe_request_dissect; return "Probe Request"; case 0x5: - *get_content = mgmt_unimplemented; + /* Probe Response is very similar to Beacon except some IEs */ + *get_content = mgmt_beacon_dissect; return "Probe Response"; case 0x8: *get_content = mgmt_beacon_dissect; |