aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2013-05-29 13:03:52 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2013-05-29 13:03:52 +0000
commitdc7772cce2019e794f93dd7ee71db4c988d5a15c (patch)
tree71e770b2306db5f912c73de9fb6327de05b71d86
parent5c595ef825517c742003f267b03f721d3e51506c (diff)
Fix what looks to be a typo in definition of wtap_encaps.
svn path=/trunk/; revision=49609
-rwxr-xr-xepan/wslua/make-init-lua.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wslua/make-init-lua.pl b/epan/wslua/make-init-lua.pl
index 80fdf8d7b5..ddef747fd2 100755
--- a/epan/wslua/make-init-lua.pl
+++ b/epan/wslua/make-init-lua.pl
@@ -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': $!";