From Arnaud Jacques: fix a typo, and handle another CheckPoint version

number.

svn path=/trunk/; revision=9138
This commit is contained in:
Guy Harris 2003-12-02 09:05:10 +00:00
parent f2fb3130b4
commit 77ae9aa55a
3 changed files with 6 additions and 2 deletions

View File

@ -1965,6 +1965,7 @@ And assorted fixes and enhancements by the people listed above and by:
Patrick Kursawe <phosphan [AT] gentoo.org>
Arsen Chaloyan <achaloyan [AT] yahoo.com>
<melerski [AT] poczta.onet.pl>
Arnaud Jacques <webmaster [AT] securiteinfo.com>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.

View File

@ -2085,6 +2085,7 @@ B<http://www.ethereal.com>.
Patrick Kursawe <phosphan [AT] gentoo.org>
Arsen Chaloyan <achaloyan [AT] yahoo.com>
<melerski [AT] poczta.onet.pl>
Arnaud Jacques <webmaster [AT] securiteinfo.com>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.

View File

@ -4,7 +4,7 @@
* for ISAKMP (RFC 2407)
* Brad Robel-Forrest <brad.robel-forrest@watchguard.com>
*
* $Id: packet-isakmp.c,v 1.72 2003/11/04 21:44:27 guy Exp $
* $Id: packet-isakmp.c,v 1.73 2003/12/02 09:05:02 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -1025,7 +1025,9 @@ dissect_vid(tvbuff_t *tvb, int offset, int length, proto_tree *tree,
break;
case 5003: proto_item_append_text(pt, "NG Feature Pack 3");
break;
default: proto_item_append_text(pt, " Uknown CP version!");
case 5004: proto_item_append_text(pt, "NG Application Intelligence");
break;
default: proto_item_append_text(pt, " Unknown CP version!");
break;
}
}