diff options
author | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2007-07-09 13:27:15 +0000 |
---|---|---|
committer | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2007-07-09 13:27:15 +0000 |
commit | afb016cc87a53bf103a6289ddf575a28c19fc4c6 (patch) | |
tree | 53302cf0af5616e6364eabc96e7b1715f6907e4e /epan/dissectors/packet-diameter.c | |
parent | b363b1664d13b28fbce3d410b174de41a8146433 (diff) | |
download | wireshark-afb016cc87a53bf103a6289ddf575a28c19fc4c6.tar.gz wireshark-afb016cc87a53bf103a6289ddf575a28c19fc4c6.tar.bz2 wireshark-afb016cc87a53bf103a6289ddf575a28c19fc4c6.zip |
- Fix a broken comment in xml file
- Add/fix some AVPs
- Print unmatched command codes in decimal
svn path=/trunk/; revision=22275
Diffstat (limited to 'epan/dissectors/packet-diameter.c')
-rw-r--r-- | epan/dissectors/packet-diameter.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-diameter.c b/epan/dissectors/packet-diameter.c index c37ee35007..8a96bb474e 100644 --- a/epan/dissectors/packet-diameter.c +++ b/epan/dissectors/packet-diameter.c @@ -1054,8 +1054,8 @@ diameter_command_to_str(guint32 commandCode, guint32 vendorId) } if ( suppress_console_output == FALSE ) - g_warning("Diameter: Unable to find name for command code 0x%08x, Vendor \"%u\"!", - commandCode, vendorId); + g_warning("Diameter: Unable to find name for command code 0x%08x (%u), Vendor \"%u\"!", + commandCode, commandCode, vendorId); buffer=ep_alloc(64); g_snprintf(buffer, 64, "Cmd-0x%08x", commandCode); @@ -1070,8 +1070,8 @@ diameter_command_to_str(guint32 commandCode, guint32 vendorId) } if ( suppress_console_output == FALSE ) - g_warning("Diameter: Unable to find name for command code 0x%08x!", - commandCode); + g_warning("Diameter: Unable to find name for command code 0x%08x (%u)!", + commandCode, commandCode); buffer=ep_alloc(64); g_snprintf(buffer, 64, "Cmd-0x%08x", commandCode); |