aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-18 19:46:41 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-18 19:46:41 +0000
commit5d7ae014380b049090ca065a8c412cc8966273ce (patch)
tree92217601dc018374a8233ff0914555f09993094f /packet-tcp.c
parenta67be8cfcdef805c613621f95d9e0d8f949d642d (diff)
From Lars Roland: the window size passed to
"tcp_analyze_sequence_number()" is a "guint32", as it might be scaled - make the arugment a "guint32" as well. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9014 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-tcp.c')
-rw-r--r--packet-tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-tcp.c b/packet-tcp.c
index 2343a10d68..d52ef32ddb 100644
--- a/packet-tcp.c
+++ b/packet-tcp.c
@@ -1,7 +1,7 @@
/* packet-tcp.c
* Routines for TCP packet disassembly
*
- * $Id: packet-tcp.c,v 1.217 2003/11/13 20:53:44 sahlberg Exp $
+ * $Id: packet-tcp.c,v 1.218 2003/11/18 19:46:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -517,7 +517,7 @@ tcp_analyze_get_acked_struct(guint32 frame, gboolean createflag)
}
static void
-tcp_analyze_sequence_number(packet_info *pinfo, guint32 seq, guint32 ack, guint32 seglen, guint8 flags, guint16 window)
+tcp_analyze_sequence_number(packet_info *pinfo, guint32 seq, guint32 ack, guint32 seglen, guint8 flags, guint32 window)
{
struct tcp_analysis *tcpd=NULL;
int direction;