aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_listener.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-05-08 16:40:38 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-05-08 16:40:38 +0000
commit3dc9b64560c53044e213ca8486c71c64265dfe37 (patch)
treeff445a8588defa1cbb31e02f932812aeecb39f8c /epan/wslua/wslua_listener.c
parentba2e20b5d80354f5125c85c6156b0902938cd140 (diff)
Adjusted arguments used in Lua Pref.statictext()
Update Lua documentation: - Fixed Pref.enum, Pref.range and Pref.statictext - Fixed the equivalent comment for pinfo.cols - Do not have a comment star (*) in the documentation - Be consistent and start all sentences with a capital letter svn path=/trunk/; revision=28304
Diffstat (limited to 'epan/wslua/wslua_listener.c')
-rw-r--r--epan/wslua/wslua_listener.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wslua/wslua_listener.c b/epan/wslua/wslua_listener.c
index 41931a5312..22548849b4 100644
--- a/epan/wslua/wslua_listener.c
+++ b/epan/wslua/wslua_listener.c
@@ -191,8 +191,8 @@ void lua_tap_draw(void *tapdata) {
WSLUA_CONSTRUCTOR Listener_new(lua_State* L) {
/* Creates a new Listener listener */
-#define WSLUA_OPTARG_Listener_new_TAP 1 /* the name of this tap */
-#define WSLUA_OPTARG_Listener_new_FILTER 2 /* a filter that when matches the tap.packet function gets called (use nil to be called for every packet) */
+#define WSLUA_OPTARG_Listener_new_TAP 1 /* The name of this tap */
+#define WSLUA_OPTARG_Listener_new_FILTER 2 /* A filter that when matches the tap.packet function gets called (use nil to be called for every packet) */
const gchar* tap_type = luaL_optstring(L,WSLUA_OPTARG_Listener_new_TAP,"frame");
const gchar* filter = luaL_optstring(L,WSLUA_OPTARG_Listener_new_FILTER,NULL);