aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-08 21:03:41 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-08 21:03:41 +0000
commitc6ac943216ed9b9583a6532c09321f53eb3c02e9 (patch)
tree7f7410af8a5a2c4c3eb31c7c3eddc6900e797c66 /epan
parentd4959b176edf55f7160a95100ae9d47d1f6d8993 (diff)
Clean up indentation.
svn path=/trunk/; revision=4362
Diffstat (limited to 'epan')
-rw-r--r--epan/packet.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/epan/packet.c b/epan/packet.c
index 53b33f840b..a4c70dbe47 100644
--- a/epan/packet.c
+++ b/epan/packet.c
@@ -1,7 +1,7 @@
/* packet.c
* Routines for packet disassembly
*
- * $Id: packet.c,v 1.52 2001/12/08 06:41:47 guy Exp $
+ * $Id: packet.c,v 1.53 2001/12/08 21:00:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -152,24 +152,24 @@ init_all_protocols(void)
/* Creates the top-most tvbuff and calls dissect_frame() */
void
dissect_packet(epan_dissect_t *edt, union wtap_pseudo_header *pseudo_header,
- const u_char *pd, frame_data *fd)
-{
- edt->pi.dl_src.type = AT_NONE;
- edt->pi.dl_dst.type = AT_NONE;
- edt->pi.net_src.type = AT_NONE;
- edt->pi.net_dst.type = AT_NONE;
- edt->pi.src.type = AT_NONE;
- edt->pi.dst.type = AT_NONE;
- edt->pi.ethertype = 0;
- edt->pi.ipproto = 0;
- edt->pi.ipxptype = 0;
- edt->pi.in_error_pkt = FALSE;
- edt->pi.ptype = PT_NONE;
- edt->pi.srcport = 0;
- edt->pi.destport = 0;
- edt->pi.current_proto = "<Missing Protocol Name>";
- edt->pi.p2p_dir = P2P_DIR_UNKNOWN;
- edt->pi.private_data = NULL;
+ const u_char *pd, frame_data *fd)
+{
+ edt->pi.dl_src.type = AT_NONE;
+ edt->pi.dl_dst.type = AT_NONE;
+ edt->pi.net_src.type = AT_NONE;
+ edt->pi.net_dst.type = AT_NONE;
+ edt->pi.src.type = AT_NONE;
+ edt->pi.dst.type = AT_NONE;
+ edt->pi.ethertype = 0;
+ edt->pi.ipproto = 0;
+ edt->pi.ipxptype = 0;
+ edt->pi.in_error_pkt = FALSE;
+ edt->pi.ptype = PT_NONE;
+ edt->pi.srcport = 0;
+ edt->pi.destport = 0;
+ edt->pi.current_proto = "<Missing Protocol Name>";
+ edt->pi.p2p_dir = P2P_DIR_UNKNOWN;
+ edt->pi.private_data = NULL;
edt->pi.fd = fd;
edt->pi.pseudo_header = pseudo_header;
@@ -178,7 +178,7 @@ dissect_packet(epan_dissect_t *edt, union wtap_pseudo_header *pseudo_header,
TRY {
edt->tvb = tvb_new_real_data(pd, fd->cap_len, fd->pkt_len, "Frame");
- /* Add this tvbuffer into the data_src list */
+ /* Add this tvbuffer into the data_src list */
fd->data_src = g_slist_append( fd->data_src, edt->tvb);
}
CATCH(BoundsError) {