Fix what looks to be a typo in definition of wtap_encaps.

svn path=/trunk/; revision=49609
This commit is contained in:
Jeff Morriss 2013-05-29 13:03:52 +00:00
parent 5c595ef825
commit dc7772cce2
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#
# make-init-lua.pl
#
# create the init.lua file based on a template (stdin)
# create the init.lua file based on a template (stdin)
#
# (c) 2006, Luis E. Garcia Onatnon <luis@ontanon.org>
#
@ -68,7 +68,7 @@ close TEMPLATE;
# WTAP_ENCAP_ values
#
$wtap_encaps_table = "-- Wiretap encapsulations XXX\nwtap = wtap_encaps = {\n";
$wtap_encaps_table = "-- Wiretap encapsulations XXX\nwtap_encaps = {\n";
$wtap_filetypes_table = "-- Wiretap file types\nwtap_filetypes = {\n";
open WTAP_H, "< $WSROOT/wiretap/wtap.h" or die "cannot open '$WSROOT/wiretap/wtap.h': $!";