diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
commit | 9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch) | |
tree | 2784370cda9bbf2da9114d70f05399c0b229d28c /epan/dissectors/packet-ipmi-pps.c | |
parent | Adding debian version 4.2.6-1. (diff) | |
download | wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.tar.xz wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.zip |
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-ipmi-pps.c')
-rw-r--r-- | epan/dissectors/packet-ipmi-pps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ipmi-pps.c b/epan/dissectors/packet-ipmi-pps.c index 41a04d95..ff7e3212 100644 --- a/epan/dissectors/packet-ipmi-pps.c +++ b/epan/dissectors/packet-ipmi-pps.c @@ -17,7 +17,7 @@ void proto_register_ipmi_pps(void); -static ipmi_cmd_t cmd_pps[] = { +static const ipmi_cmd_t cmd_pps[] = { { 0x00, IPMI_TBD, NULL, NULL, "[PPS OEM] Get Status", 0 }, { 0x01, IPMI_TBD, NULL, NULL, "[PPS OEM] Get Serial Interface Properties", 0 }, { 0x02, IPMI_TBD, NULL, NULL, "[PPS OEM] Set Serial Interface Properties", 0 }, @@ -89,8 +89,8 @@ static ipmi_cmd_t cmd_pps[] = { void proto_register_ipmi_pps(void) { - static guint8 sig_pps[3] = { 0x0a, 0x40, 0x00 }; - static guint8 sig_pps_rev[3] = { 0x00, 0x40, 0x0a }; + static uint8_t sig_pps[3] = { 0x0a, 0x40, 0x00 }; + static uint8_t sig_pps_rev[3] = { 0x00, 0x40, 0x0a }; ipmi_register_netfn_cmdtab(IPMI_OEM_REQ, IPMI_OEM_NONE, sig_pps, 3, "Pigeon Point Systems", cmd_pps, array_length(cmd_pps)); |