From: hannes Date: Tue, 29 Jul 2003 08:53:51 +0000 (+0000) Subject: bogus generation of PSNP codepoint for CSNP PDUs X-Git-Tag: libpcap-0.8-bp~25 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/4ed4d62d8f10c1940c28b6b919a91957ee6616b8 bogus generation of PSNP codepoint for CSNP PDUs --- diff --git a/gencode.c b/gencode.c index f8765fb5..e27a65b1 100644 --- a/gencode.c +++ b/gencode.c @@ -21,7 +21,7 @@ */ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/libpcap/gencode.c,v 1.191 2003-05-02 08:37:43 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/gencode.c,v 1.192 2003-07-29 08:53:51 hannes Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -2967,8 +2967,8 @@ gen_proto_abbrev(proto) break; case Q_ISIS_CSNP: - b0 = gen_proto(ISIS_L1_PSNP, Q_ISIS, Q_DEFAULT); - b1 = gen_proto(ISIS_L2_PSNP, Q_ISIS, Q_DEFAULT); + b0 = gen_proto(ISIS_L1_CSNP, Q_ISIS, Q_DEFAULT); + b1 = gen_proto(ISIS_L2_CSNP, Q_ISIS, Q_DEFAULT); gen_or(b0, b1); break;