From 8ac1277397acf4f5f34a4a81ec2f27c23a668f38 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 24 Aug 1999 06:14:16 +0000 Subject: [PATCH] In the summary display for PPP frames, make the protocol PPP (which will get overridden in any case). svn path=/trunk/; revision=560 --- packet-ppp.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packet-ppp.c b/packet-ppp.c index 9fdd14bb03..81a5bda615 100644 --- a/packet-ppp.c +++ b/packet-ppp.c @@ -1,7 +1,7 @@ /* packet-ppp.c * Routines for ppp packet disassembly * - * $Id: packet-ppp.c,v 1.13 1999/07/29 05:47:01 gram Exp $ + * $Id: packet-ppp.c,v 1.14 1999/08/24 06:14:16 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -334,14 +334,14 @@ dissect_ppp( const u_char *pd, frame_data *fd, proto_tree *tree ) { /* load the top pane info. This should be overwritten by the next protocol in the stack */ - if(check_col(fd, COL_RES_DL_SRC)) - col_add_str(fd, COL_RES_DL_SRC, "N/A" ); - if(check_col(fd, COL_RES_DL_DST)) - col_add_str(fd, COL_RES_DL_DST, "N/A" ); - if(check_col(fd, COL_PROTOCOL)) - col_add_str(fd, COL_PROTOCOL, "N/A" ); - if(check_col(fd, COL_INFO)) - col_add_str(fd, COL_INFO, "PPP" ); + if(check_col(fd, COL_RES_DL_SRC)) + col_add_str(fd, COL_RES_DL_SRC, "N/A" ); + if(check_col(fd, COL_RES_DL_DST)) + col_add_str(fd, COL_RES_DL_DST, "N/A" ); + if(check_col(fd, COL_PROTOCOL)) + col_add_str(fd, COL_PROTOCOL, "PPP" ); + if(check_col(fd, COL_INFO)) + col_add_str(fd, COL_INFO, "PPP" ); /* populate a tree in the second pane with the status of the link layer (ie none) */