aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ses.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-13 01:52:09 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-13 01:52:09 +0000
commit3868417a4e97fad21687fb4dcd9cae0227d08874 (patch)
tree86bf192ee2b3024d7694a583444de2622e77b165 /packet-ses.c
parent920e2a6d5626cf687a9e5c6402f478c4b530e059 (diff)
From Yuriy Sidelnikov: remove an incorrect "&".
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9647 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ses.c')
-rw-r--r--packet-ses.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ses.c b/packet-ses.c
index 439a1631d3..00799c3d9f 100644
--- a/packet-ses.c
+++ b/packet-ses.c
@@ -2,7 +2,7 @@
*
* Routine to dissect ISO 8327-1 OSI Session Protocol packets
*
-* $Id: packet-ses.c,v 1.6 2004/01/09 23:18:16 guy Exp $
+* $Id: packet-ses.c,v 1.7 2004/01/13 01:52:09 guy Exp $
*
* Yuriy Sidelnikov <YSidelnikov@hotmail.com>
*
@@ -292,7 +292,7 @@ call_pres_dissector(tvbuff_t *tvb, int offset, guint16 param_len,
{
/* save type of session pdu. We'll need it in the presentation dissector */
saved_private_data = pinfo->private_data;
- pinfo->private_data = &session;
+ pinfo->private_data = session;
call_dissector(pres_handle, next_tvb, pinfo, tree);
pinfo->private_data = saved_private_data;
}