From 0cf18ffba863103c89ebeaa68a9bb7bc7507190e Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 16 Sep 2003 20:41:17 +0000 Subject: [PATCH] Handle PPP with a pseudo-header. svn path=/trunk/; revision=8486 --- gtk/tcp_graph.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk/tcp_graph.c b/gtk/tcp_graph.c index 357d91ea1b..83982b9875 100644 --- a/gtk/tcp_graph.c +++ b/gtk/tcp_graph.c @@ -3,7 +3,7 @@ * By Pavel Mores * Win32 port: rwh@unifiedtech.com * - * $Id: tcp_graph.c,v 1.35 2003/09/15 22:17:25 guy Exp $ + * $Id: tcp_graph.c,v 1.36 2003/09/16 20:41:17 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -1854,6 +1854,7 @@ static int get_headers (frame_data *fd, char *pd, struct segment *hdrs) break; case WTAP_ENCAP_PPP: + case WTAP_ENCAP_PPP_WITH_PHDR: /* It's PPP */ p = (struct ppp_header *)pd; if (p->ppp_type != PPPTYPE_IP)