aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-moldudp64.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-08-16 13:17:48 +0000
committerBill Meier <wmeier@newsguy.com>2012-08-16 13:17:48 +0000
commitf3fe7788518735be90021553e183552b34ab88b4 (patch)
tree299cb97ffa5bcd174151ac8a4ff6e58c3015ce93 /epan/dissectors/packet-moldudp64.c
parent8568c13399c55cce836d7f0fe85107f00a6b9e04 (diff)
'tab-width/tabstop/tabSize' in editor modelines should really always be 8;
Also: - In one case #include <epan/prefs.h> not needed; - Do some minor whitespace reformatting. svn path=/trunk/; revision=44537
Diffstat (limited to 'epan/dissectors/packet-moldudp64.c')
-rw-r--r--epan/dissectors/packet-moldudp64.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/dissectors/packet-moldudp64.c b/epan/dissectors/packet-moldudp64.c
index df751eeb84..c9c24c3286 100644
--- a/epan/dissectors/packet-moldudp64.c
+++ b/epan/dissectors/packet-moldudp64.c
@@ -69,8 +69,8 @@ dissect_moldudp64_msgblk(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
{
proto_item *ti;
proto_tree *blk_tree;
- guint16 msglen, real_msglen, whole_len;
- guint remaining;
+ guint16 msglen, real_msglen, whole_len;
+ guint remaining;
if (tvb_length_remaining(tvb, offset) < MOLDUDP64_MSGLEN_LEN)
return 0;
@@ -121,9 +121,9 @@ dissect_moldudp64(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
proto_item *ti;
proto_tree *moldudp64_tree;
- guint offset = 0;
- guint16 count, real_count = 0;
- guint64 sequence;
+ guint offset = 0;
+ guint16 count, real_count = 0;
+ guint64 sequence;
/* Check that there's enough data */
if (tvb_reported_length(tvb) < (MOLDUDP64_SESSION_LEN +
@@ -259,9 +259,9 @@ proto_register_moldudp64(void)
void
proto_reg_handoff_moldudp64(void)
{
- static gboolean initialized = FALSE;
+ static gboolean initialized = FALSE;
static dissector_handle_t moldudp64_handle;
- static int currentPort;
+ static int currentPort;
if (!initialized) {
@@ -284,10 +284,10 @@ proto_reg_handoff_moldudp64(void)
*
* Local variables:
* c-basic-offset: 4
- * tab-width: 4
+ * tab-width: 8
* indent-tabs-mode: nil
* End:
*
- * vi: set shiftwidth=4 tabstop=4 expandtab:
- * :indentSize=4:tabSize=4:noTabs=true:
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
*/