aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-9p.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-05-17 05:33:53 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-05-17 05:33:53 +0000
commit4b85b45281518dc67b3a053aedf275a83654edd7 (patch)
tree23d6c59bb04ce30141d3f80f0ebef6c80fcc58bb /epan/dissectors/packet-9p.c
parenta335cd8d87bd884f8b173c07a556f27cc4bb9e8c (diff)
Squelch more warnings about empty structures.
svn path=/trunk/; revision=49366
Diffstat (limited to 'epan/dissectors/packet-9p.c')
-rw-r--r--epan/dissectors/packet-9p.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/epan/dissectors/packet-9p.c b/epan/dissectors/packet-9p.c
index 95142a9e4c..decebbac7c 100644
--- a/epan/dissectors/packet-9p.c
+++ b/epan/dissectors/packet-9p.c
@@ -581,8 +581,10 @@ struct _9p_tsetattr {
guint64 mtime_sec;
guint64 mtime_nsec;
};
+#if 0
struct _9p_rsetattr {
};
+#endif
struct _9p_txattrwalk {
guint32 fid;
guint32 attrfid;
@@ -597,8 +599,10 @@ struct _9p_txattrcreate {
guint64 size;
guint32 flag;
};
+#if 0
struct _9p_rxattrcreate {
};
+#endif
struct _9p_treaddir {
guint32 fid;
guint64 offset;
@@ -611,8 +615,10 @@ struct _9p_rreaddir {
struct _9p_tfsync {
guint32 fid;
};
+#if 0
struct _9p_rfsync {
};
+#endif
struct _9p_tlock {
guint32 fid;
guint8 type;
@@ -713,8 +719,10 @@ struct _9p_rerror {
struct _9p_tflush {
guint16 oldtag;
};
+#if 0
struct _9p_rflush {
};
+#endif
struct _9p_tattach {
guint32 fid;
guint32 afid;
@@ -775,17 +783,20 @@ struct _9p_rwrite {
struct _9p_tclunk {
guint32 fid;
};
+#if 0
struct _9p_rclunk {
};
+#endif
struct _9p_tremove {
guint32 fid;
};
+#if 0
struct _9p_rremove {
};
union _9p_tmsg {
} ;
-
+#endif
#define NINEPORT 564
/* Forward declarations */