aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-09-07 22:00:02 +0000
committerEvan Huus <eapache@gmail.com>2013-09-07 22:00:02 +0000
commit9507f56495679132fc379da60b7fc84dd361bb1b (patch)
tree84906d444e376aca58e0035f193c9abde63ea249
parent9fd46c37a89dce1de754087bbc1154c5593108b0 (diff)
Fix lua docstring causing the buildbot's documentation step to fail.
svn path=/trunk/; revision=51828
-rw-r--r--epan/wslua/wslua_proto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wslua/wslua_proto.c b/epan/wslua/wslua_proto.c
index b69378ada1..2258ec65cc 100644
--- a/epan/wslua/wslua_proto.c
+++ b/epan/wslua/wslua_proto.c
@@ -1494,7 +1494,7 @@ typedef struct {
} proto_actions_t;
static const proto_actions_t proto_actions[] = {
- /* WSLUA_ATTRIBUTE Proto_dissector RW The protocol's dissector, a function you define.
+ /* WSLUA_ATTRIBUTE Proto_dissector RW The protocol's dissector, a function you define.
The called dissector function will be given three arguments of (1) a Tvb object, (2) a Pinfo object, and (3) a TreeItem object. */
{"dissector", Proto_get_dissector, Proto_set_dissector},
@@ -1504,7 +1504,7 @@ static const proto_actions_t proto_actions[] = {
/* WSLUA_ATTRIBUTE Proto_prefs RO The preferences of this dissector */
{"prefs", Proto_get_prefs, NULL},
- /* WSLUA_ATTRIBUTE Proto_prefs WO The preferences changed routine of this dissector, a function you define. */
+ /* WSLUA_ATTRIBUTE Proto_prefs_changed WO The preferences changed routine of this dissector, a function you define. */
{"prefs_changed", NULL, Proto_set_prefs_changed},
/* WSLUA_ATTRIBUTE Proto_init WO The init routine of this dissector, a function you define.