summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-rpc.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-10-26 00:42:34 +0000
committerEvan Huus <eapache@gmail.com>2012-10-26 00:42:34 +0000
commitc6b522bc703bd91b5c473491a68e92b5319e819c (patch)
tree531fb34d8bbdba3d2a27de3c5e457243f6fa2fd7 /epan/dissectors/packet-rpc.c
parentd97b4ec325830bee235568138ba4151edc253c54 (diff)
downloadwireshark-c6b522bc703bd91b5c473491a68e92b5319e819c.tar.gz
Revert revision 44921.
See discussion on https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7728 svn path=/trunk/; revision=45791
Diffstat (limited to 'epan/dissectors/packet-rpc.c')
-rw-r--r--epan/dissectors/packet-rpc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-rpc.c b/epan/dissectors/packet-rpc.c
index 6b08dac9ca..2bed5aafd3 100644
--- a/epan/dissectors/packet-rpc.c
+++ b/epan/dissectors/packet-rpc.c
@@ -1547,7 +1547,7 @@ dissect_rpc_indir_call(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
int offset, int args_id, guint32 prog, guint32 vers, guint32 proc)
{
conversation_t* conversation;
- static address null_address = { AT_NONE, AT_SUB_NONE, 0, NULL };
+ static address null_address = { AT_NONE, 0, NULL };
rpc_proc_info_key key;
rpc_proc_info_value *value;
rpc_call_info_value *rpc_call;
@@ -1697,7 +1697,7 @@ dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
int offset, int result_id, int prog_id, int vers_id, int proc_id)
{
conversation_t* conversation;
- static address null_address = { AT_NONE, AT_SUB_NONE, 0, NULL };
+ static address null_address = { AT_NONE, 0, NULL };
rpc_call_info_value *rpc_call;
char *procname=NULL;
dissect_function_t *dissect_function = NULL;
@@ -1929,7 +1929,7 @@ dissect_rpc_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
rpc_proc_info_key key;
rpc_proc_info_value *value = NULL;
conversation_t* conversation;
- static address null_address = { AT_NONE, AT_SUB_NONE, 0, NULL };
+ static address null_address = { AT_NONE, 0, NULL };
nstime_t ns;
dissect_function_t *dissect_function = NULL;