summaryrefslogtreecommitdiff
path: root/epan/wslua
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2008-08-05 21:03:46 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2008-08-05 21:03:46 +0000
commit42c3239a1a7d8736c6ba1c67056d3fa6b3ff2c50 (patch)
tree63f55540cf39df4ec5238139068e22b1fe54c5d2 /epan/wslua
parent99331d7b99e30cd3d5366986844fdc01b2a7094a (diff)
downloadwireshark-42c3239a1a7d8736c6ba1c67056d3fa6b3ff2c50.tar.gz
luis.ontanon@gmail.com => luis@ontanon.org
svn path=/trunk/; revision=25937
Diffstat (limited to 'epan/wslua')
-rw-r--r--epan/wslua/console.lua2
-rw-r--r--epan/wslua/dtd_gen.lua2
-rw-r--r--epan/wslua/init_wslua.c2
-rwxr-xr-xepan/wslua/make-init-lua.pl2
-rwxr-xr-xepan/wslua/make-taps.pl2
-rw-r--r--epan/wslua/taps2
-rw-r--r--epan/wslua/wslua.h2
-rw-r--r--epan/wslua/wslua_dumper.c2
-rw-r--r--epan/wslua/wslua_field.c2
-rw-r--r--epan/wslua/wslua_gui.c2
-rw-r--r--epan/wslua/wslua_listener.c2
-rw-r--r--epan/wslua/wslua_pinfo.c2
-rw-r--r--epan/wslua/wslua_proto.c2
-rw-r--r--epan/wslua/wslua_tree.c2
-rw-r--r--epan/wslua/wslua_tvb.c2
-rw-r--r--epan/wslua/wslua_util.c2
16 files changed, 16 insertions, 16 deletions
diff --git a/epan/wslua/console.lua b/epan/wslua/console.lua
index 45339ccd70..4136bece96 100644
--- a/epan/wslua/console.lua
+++ b/epan/wslua/console.lua
@@ -1,7 +1,7 @@
-- console
-- A console and a window to execute commands in lua
--
--- (c) 2006 Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+-- (c) 2006 Luis E. Garcia Ontanon <luis@ontanon.org>
--
-- $Id$
--
diff --git a/epan/wslua/dtd_gen.lua b/epan/wslua/dtd_gen.lua
index 58629bf27e..9c8d4dc9f8 100644
--- a/epan/wslua/dtd_gen.lua
+++ b/epan/wslua/dtd_gen.lua
@@ -2,7 +2,7 @@
--
-- a DTD generator for wireshark
--
--- (c) 2006 Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+-- (c) 2006 Luis E. Garcia Ontanon <luis@ontanon.org>
--
-- $Id:$
--
diff --git a/epan/wslua/init_wslua.c b/epan/wslua/init_wslua.c
index 7671db7306..eea40df77a 100644
--- a/epan/wslua/init_wslua.c
+++ b/epan/wslua/init_wslua.c
@@ -3,7 +3,7 @@
*
* Wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
*
* $Id$
*
diff --git a/epan/wslua/make-init-lua.pl b/epan/wslua/make-init-lua.pl
index 8ca9773eeb..ca88c772d0 100755
--- a/epan/wslua/make-init-lua.pl
+++ b/epan/wslua/make-init-lua.pl
@@ -4,7 +4,7 @@
#
# create the init.lua file based on a template (stdin)
#
-# (c) 2006, Luis E. Garcia Onatnon <luis.ontanon@gmail.com>
+# (c) 2006, Luis E. Garcia Onatnon <luis@ontanon.org>
#
# $Id$
#
diff --git a/epan/wslua/make-taps.pl b/epan/wslua/make-taps.pl
index 7393945f4f..d1a2e43314 100755
--- a/epan/wslua/make-taps.pl
+++ b/epan/wslua/make-taps.pl
@@ -5,7 +5,7 @@
# pushes a lua table into the stack containing the elements of
# the struct.
#
-# (c) 2006 Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+# (c) 2006 Luis E. Garcia Ontanon <luis@ontanon.org>
#
# $Id$
#
diff --git a/epan/wslua/taps b/epan/wslua/taps
index 0791f07e7c..f17d2aaf3c 100644
--- a/epan/wslua/taps
+++ b/epan/wslua/taps
@@ -1,7 +1,7 @@
# taps
# instructions for make-taps.pl to generate the taps.c file
#
-# (c) 2006 Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+# (c) 2006 Luis E. Garcia Ontanon <luis@ontanon.org>
#
# $Id$
#
diff --git a/epan/wslua/wslua.h b/epan/wslua/wslua.h
index f6eafe1b69..ec75205602 100644
--- a/epan/wslua/wslua.h
+++ b/epan/wslua/wslua.h
@@ -3,7 +3,7 @@
*
* Wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
* (c) 2007, Tamas Regos <tamas.regos@ericsson.com>
* (c) 2008, Balint Reczey <balint.reczey@ericsson.com>
*
diff --git a/epan/wslua/wslua_dumper.c b/epan/wslua/wslua_dumper.c
index 1301156daa..80f5fd2439 100644
--- a/epan/wslua/wslua_dumper.c
+++ b/epan/wslua/wslua_dumper.c
@@ -3,7 +3,7 @@
*
* Wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
*
* $Id$
*
diff --git a/epan/wslua/wslua_field.c b/epan/wslua/wslua_field.c
index 41e5c787c4..ebc041ea1f 100644
--- a/epan/wslua/wslua_field.c
+++ b/epan/wslua/wslua_field.c
@@ -3,7 +3,7 @@
*
* Wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
*
* $Id$
*
diff --git a/epan/wslua/wslua_gui.c b/epan/wslua/wslua_gui.c
index 05666928dd..41cca57b14 100644
--- a/epan/wslua/wslua_gui.c
+++ b/epan/wslua/wslua_gui.c
@@ -1,7 +1,7 @@
/*
* wslua_gui.c
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
*
* $Id$
*
diff --git a/epan/wslua/wslua_listener.c b/epan/wslua/wslua_listener.c
index 0571626e05..bd103a95fe 100644
--- a/epan/wslua/wslua_listener.c
+++ b/epan/wslua/wslua_listener.c
@@ -5,7 +5,7 @@
*
* Implementation of tap Listeners
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
*
* $Id$
*
diff --git a/epan/wslua/wslua_pinfo.c b/epan/wslua/wslua_pinfo.c
index e238a1ceac..4531767bcb 100644
--- a/epan/wslua/wslua_pinfo.c
+++ b/epan/wslua/wslua_pinfo.c
@@ -3,7 +3,7 @@
*
* Wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
* (c) 2008, Balint Reczey <balint.reczey@ericsson.com>
*
* $Id$
diff --git a/epan/wslua/wslua_proto.c b/epan/wslua/wslua_proto.c
index 9189446dc7..6a73513638 100644
--- a/epan/wslua/wslua_proto.c
+++ b/epan/wslua/wslua_proto.c
@@ -3,7 +3,7 @@
*
* wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
* (c) 2007, Tamas Regos <tamas.regos@ericsson.com>
*
* $Id$
diff --git a/epan/wslua/wslua_tree.c b/epan/wslua/wslua_tree.c
index 05b26c94ec..d67b4f722a 100644
--- a/epan/wslua/wslua_tree.c
+++ b/epan/wslua/wslua_tree.c
@@ -3,7 +3,7 @@
*
* Wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
* (c) 2008, Balint Reczey <balint.reczey@ericsson.com>
*
* $Id$
diff --git a/epan/wslua/wslua_tvb.c b/epan/wslua/wslua_tvb.c
index 8b07cc485b..d7d992daab 100644
--- a/epan/wslua/wslua_tvb.c
+++ b/epan/wslua/wslua_tvb.c
@@ -3,7 +3,7 @@
*
* Wireshark's interface to the Lua Programming Language
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
* (c) 2008, Balint Reczey <balint.reczey@ericsson.com>
*
* $Id$
diff --git a/epan/wslua/wslua_util.c b/epan/wslua/wslua_util.c
index d59f0131b5..7c8d37887a 100644
--- a/epan/wslua/wslua_util.c
+++ b/epan/wslua/wslua_util.c
@@ -1,7 +1,7 @@
/*
* wslua_util.c
*
- * (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
*
* $Id$
*