aboutsummaryrefslogtreecommitdiffstats
path: root/grammar.y
diff options
context:
space:
mode:
authorguy <guy>2007-02-08 07:15:27 +0000
committerguy <guy>2007-02-08 07:15:27 +0000
commitd02424cd4c996bcb07bd69084bff492599e3fb47 (patch)
tree851f253108a624201c4c1cde226880077ad6a3e1 /grammar.y
parenta247db420a840e6adb8c998518d3620353dfcfc8 (diff)
From Florent Drouin: a Link Status Signal Unit is called an LSSU, not an
LSU. (Leave "lsu" as an alias for backwards compatibility.)
Diffstat (limited to 'grammar.y')
-rw-r--r--grammar.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/grammar.y b/grammar.y
index eaf9e76..f127fe0 100644
--- a/grammar.y
+++ b/grammar.y
@@ -22,7 +22,7 @@
*/
#ifndef lint
static const char rcsid[] _U_ =
- "@(#) $Header: /tcpdump/master/libpcap/grammar.y,v 1.94 2006-12-21 19:44:06 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/libpcap/grammar.y,v 1.95 2007-02-08 07:15:27 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -141,7 +141,7 @@ pcap_parse()
%token OAM OAMF4 CONNECTMSG METACONNECT
%token VPI VCI
%token RADIO
-%token FISU LSU MSU
+%token FISU LSSU MSU
%token SIO OPC DPC SLS
%type <s> ID
@@ -452,7 +452,7 @@ atmlistvalue: atmfieldvalue
;
/* MTP2 types quantifier */
mtp2type: FISU { $$ = M_FISU; }
- | LSU { $$ = M_LSU; }
+ | LSSU { $$ = M_LSSU; }
| MSU { $$ = M_MSU; }
;
/* MTP3 field types quantifier */