diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:26 +0000 |
commit | c4e8a3222648fcf22ca207f1815ebbf7cd144eeb (patch) | |
tree | 93d5c6aa93d9987680dd1adad5685e2ad698f223 /epan/dissectors/packet-ipmi-pps.c | |
parent | Adding upstream version 4.2.6. (diff) | |
download | wireshark-upstream.tar.xz wireshark-upstream.zip |
Adding upstream version 4.4.0.upstream/4.4.0upstream
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)); |