diff options
author | Bill Meier <wmeier@newsguy.com> | 2010-11-03 22:08:49 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2010-11-03 22:08:49 +0000 |
commit | 9675740701929afcd6b3096ab6a3fc05ac5255e5 (patch) | |
tree | 7b47ecf6461cc13314377477689d79ba3949f285 /epan/dissectors/packet-scsi.c | |
parent | c093ff0bfce5ef8ade99e6fab8ef82d30ac4bcf2 (diff) | |
download | wireshark-9675740701929afcd6b3096ab6a3fc05ac5255e5.tar.gz wireshark-9675740701929afcd6b3096ab6a3fc05ac5255e5.tar.bz2 wireshark-9675740701929afcd6b3096ab6a3fc05ac5255e5.zip |
Use value_string_ext fcns to access certain value_string arrays;
Sort several value_string arrays to be in ascending order.
Also: Minor whitespace cleanup.
svn path=/trunk/; revision=34766
Diffstat (limited to 'epan/dissectors/packet-scsi.c')
-rw-r--r-- | epan/dissectors/packet-scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-scsi.c b/epan/dissectors/packet-scsi.c index 92a82d1ec8..bf23fe02b3 100644 --- a/epan/dissectors/packet-scsi.c +++ b/epan/dissectors/packet-scsi.c @@ -4270,7 +4270,7 @@ dissect_scsi_rsp (tvbuff_t *tvb, packet_info *pinfo, cdata->type=SCSI_PDU_TYPE_RSP; tap_queue_packet(scsi_tap, pinfo, cdata); - csdata=get_cmdset_data(itlq, itl); /* will gassert if itlq is null */ + csdata=get_cmdset_data(itlq, itl); /* will g_assert if itlq is null */ /* Nothing really to do here, just print some stuff passed to us */ |