in sack options only look for tcp session metadata if both tcp_analysis and tcp_relative preferences are set. relative depends on analysis

svn path=/trunk/; revision=13398
This commit is contained in:
Ronnie Sahlberg 2005-02-14 19:34:59 +00:00
parent cba5f271e6
commit 9378b4f6b4
1 changed files with 1 additions and 1 deletions

View File

@ -2256,7 +2256,7 @@ dissect_tcpopt_sack(const ip_tcp_opt *optp, tvbuff_t *tvb,
int direction;
guint32 base_ack=0;
if(tcp_relative_seq){
if(tcp_analyze_seq && tcp_relative_seq){
/* find(or create if needed) the conversation for this tcp session */
tcpd=get_tcp_conversation_data(pinfo);