aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua
diff options
context:
space:
mode:
authorHadriel Kaplan <hadrielk@yahoo.com>2015-07-23 20:27:26 -0400
committerHadriel Kaplan <hadrielk@yahoo.com>2015-07-24 00:29:14 +0000
commitd2828a35985bd713d7b9b014d0d55bb322c0721f (patch)
tree7fe19d22741914ffaa7e6c6d7474fa4ad902d6ab /epan/wslua
parent99b58131d8897e036210f443d8fe7c73edc90289 (diff)
Lua: fix "since 1.99.9" to be 1.99.8
Change-Id: I842e4b6a38fc161ba7ab14caa27b3bbf74c989d7 Reviewed-on: https://code.wireshark.org/review/9763 Reviewed-by: Hadriel Kaplan <hadrielk@yahoo.com>
Diffstat (limited to 'epan/wslua')
-rw-r--r--epan/wslua/wslua_field.c20
-rw-r--r--epan/wslua/wslua_tree.c10
-rw-r--r--epan/wslua/wslua_tvb.c6
-rw-r--r--epan/wslua/wslua_util.c2
4 files changed, 19 insertions, 19 deletions
diff --git a/epan/wslua/wslua_field.c b/epan/wslua/wslua_field.c
index 39a66f0e93..2321a118c3 100644
--- a/epan/wslua/wslua_field.c
+++ b/epan/wslua/wslua_field.c
@@ -281,7 +281,7 @@ static int FieldInfo_get_display(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_type RO The internal field type, a number which
matches one of the `ftype` values in `init.lua`.
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_type(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -299,7 +299,7 @@ static int FieldInfo_get_type(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_source RO The source `Tvb` object the `FieldInfo` is derived
from, or nil if there is none.
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_source(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -337,7 +337,7 @@ static int FieldInfo_get_generated(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_hidden RO Whether this field was marked as hidden (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_hidden(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -348,7 +348,7 @@ static int FieldInfo_get_hidden(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_is_url RO Whether this field was marked as being a URL (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_is_url(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -359,7 +359,7 @@ static int FieldInfo_get_is_url(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_little_endian RO Whether this field is little-endian encoded (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_little_endian(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -370,7 +370,7 @@ static int FieldInfo_get_little_endian(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_big_endian RO Whether this field is big-endian encoded (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_big_endian(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -381,7 +381,7 @@ static int FieldInfo_get_big_endian(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_name RO The filter name of this field.
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_name(lua_State* L) {
/* The filter name of this field. */
@@ -705,7 +705,7 @@ WSLUA_CONSTRUCTOR Field_list(lua_State *L) {
/* WSLUA_ATTRIBUTE Field_name RO The filter name of this field, or nil.
- @since 1.99.9
+ @since 1.99.8
*/
static int Field_get_name(lua_State* L) {
Field fi = checkField(L,1);
@@ -718,7 +718,7 @@ static int Field_get_name(lua_State* L) {
/* WSLUA_ATTRIBUTE Field_display RO The full display name of this field, or nil.
- @since 1.99.9
+ @since 1.99.8
*/
static int Field_get_display(lua_State* L) {
Field fi = checkField(L,1);
@@ -731,7 +731,7 @@ static int Field_get_display(lua_State* L) {
/* WSLUA_ATTRIBUTE Field_type RO The `ftype` of this field, or nil.
- @since 1.99.9
+ @since 1.99.8
*/
static int Field_get_type(lua_State* L) {
Field fi = checkField(L,1);
diff --git a/epan/wslua/wslua_tree.c b/epan/wslua/wslua_tree.c
index df28b1912f..5a90d53c99 100644
--- a/epan/wslua/wslua_tree.c
+++ b/epan/wslua/wslua_tree.c
@@ -700,7 +700,7 @@ WSLUA_METHOD TreeItem_add_tvb_expert_info(lua_State *L) {
/* WSLUA_ATTRIBUTE TreeItem_visible RO Get the `TreeItem`'s subtree visibility status (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int TreeItem_get_visible(lua_State* L) {
TreeItem ti = checkTreeItem(L,1);
@@ -718,7 +718,7 @@ static int TreeItem_get_visible(lua_State* L) {
/* WSLUA_ATTRIBUTE TreeItem_generated RW Set/get the `TreeItem`'s generated state (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int TreeItem_get_generated(lua_State* L) {
TreeItem ti = checkTreeItem(L,1);
@@ -755,7 +755,7 @@ WSLUA_METHOD TreeItem_set_generated(lua_State *L) {
/* WSLUA_ATTRIBUTE TreeItem_hidden RW Set/get `TreeItem`'s hidden state (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int TreeItem_get_hidden(lua_State* L) {
TreeItem ti = checkTreeItem(L,1);
@@ -791,7 +791,7 @@ WSLUA_METHOD TreeItem_set_hidden(lua_State *L) {
/* WSLUA_ATTRIBUTE TreeItem_len RW Set/get `TreeItem`'s length inside tvb, after it has already been created.
- @since 1.99.9
+ @since 1.99.8
*/
static int TreeItem_get_len(lua_State* L) {
TreeItem ti = checkTreeItem(L,1);
@@ -824,7 +824,7 @@ WSLUA_METHOD TreeItem_set_len(lua_State *L) {
WSLUA_METAMETHOD TreeItem__tostring(lua_State* L) {
/* Returns string debug information about the `TreeItem`.
- @since 1.99.9
+ @since 1.99.8
*/
TreeItem ti = toTreeItem(L,1);
diff --git a/epan/wslua/wslua_tvb.c b/epan/wslua/wslua_tvb.c
index 9e44ea6b51..a896452f9e 100644
--- a/epan/wslua/wslua_tvb.c
+++ b/epan/wslua/wslua_tvb.c
@@ -168,7 +168,7 @@ WSLUA_METHOD Tvb_reported_length_remaining(lua_State* L) {
WSLUA_METHOD Tvb_bytes(lua_State* L) {
/* Obtain a `ByteArray` from a `Tvb`.
- @since 1.99.9
+ @since 1.99.8
*/
#define WSLUA_OPTARG_Tvb_bytes_OFFSET 2 /* The offset (in octets) from the beginning of the `Tvb`. Defaults to 0. */
#define WSLUA_OPTARG_Tvb_bytes_LENGTH 3 /* The length (in octets) of the range. Defaults to until the end of the `Tvb`. */
@@ -275,7 +275,7 @@ WSLUA_METHOD Tvb_raw(lua_State* L) {
WSLUA_METAMETHOD Tvb__eq(lua_State* L) {
/* Checks whether the two `Tvb` contents are equal.
- @since 1.99.9
+ @since 1.99.8
*/
Tvb tvb_l = checkTvb(L,1);
Tvb tvb_r = checkTvb(L,2);
@@ -1322,7 +1322,7 @@ WSLUA_METHOD TvbRange_raw(lua_State* L) {
WSLUA_METAMETHOD TvbRange__eq(lua_State* L) {
/* Checks whether the two `TvbRange` contents are equal.
- @since 1.99.9
+ @since 1.99.8
*/
TvbRange tvb_l = checkTvbRange(L,1);
TvbRange tvb_r = checkTvbRange(L,2);
diff --git a/epan/wslua/wslua_util.c b/epan/wslua/wslua_util.c
index 4175c0f170..2b66cf0dcd 100644
--- a/epan/wslua/wslua_util.c
+++ b/epan/wslua/wslua_util.c
@@ -76,7 +76,7 @@ WSLUA_FUNCTION wslua_set_plugin_info(lua_State* L) {
set_plugin_info(my_info)
@endcode
- @since 1.99.9
+ @since 1.99.8
*/
#define WSLUA_ARG_set_plugin_info_TABLE 1 /* The Lua table of information. */