llc: clean up indentation.

This commit is contained in:
Guy Harris 2020-11-29 00:53:45 -08:00
parent 7dd469f801
commit 3f8423c267
1 changed files with 9 additions and 9 deletions

View File

@ -467,17 +467,17 @@ dissect_llc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
*/ */
format = tvb_get_guint8(next_tvb, 0); format = tvb_get_guint8(next_tvb, 0);
if (format == 0x81) { if (format == 0x81) {
dissect_basicxid(next_tvb, pinfo, tree, data); dissect_basicxid(next_tvb, pinfo, tree, data);
} else { } else {
/* /*
* Try the XID LLC subdissector table * Try the XID LLC subdissector table
* with the DSAP. * with the DSAP.
*/ */
if (!dissector_try_uint( if (!dissector_try_uint(
xid_subdissector_table, dsap, next_tvb, xid_subdissector_table, dsap,
pinfo, tree)) { next_tvb, pinfo, tree)) {
call_data_dissector(next_tvb, pinfo, tree); call_data_dissector(next_tvb, pinfo, tree);
} }
} }
} else { } else {
call_data_dissector(next_tvb, pinfo, tree); call_data_dissector(next_tvb, pinfo, tree);