aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-01-27 12:41:33 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-01-27 12:41:33 +0000
commitb28ca9c930d6f2945794612f7629fcacaa69a496 (patch)
tree8df1763280776e79af0bb61fbd20fec101519355 /epan/wslua
parentda3959145ec6db1583cb50e5e36631d37db9845f (diff)
Fixed some typos.
svn path=/trunk/; revision=27308
Diffstat (limited to 'epan/wslua')
-rw-r--r--epan/wslua/wslua_proto.c2
-rw-r--r--epan/wslua/wslua_tvb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/epan/wslua/wslua_proto.c b/epan/wslua/wslua_proto.c
index 6a73513638..ee7da3edca 100644
--- a/epan/wslua/wslua_proto.c
+++ b/epan/wslua/wslua_proto.c
@@ -791,7 +791,7 @@ static int ProtoField_other(lua_State* L,enum ftenum type) {
/* WSLUA_OPTARG_Protofield_uint8_DESC description of the field */
/* _WSLUA_RETURNS_ a protofield item to be added to a ProtoFieldArray */
-/* _WSLUA_CONSTRUCTOR_ ProtoField_strigz */
+/* _WSLUA_CONSTRUCTOR_ ProtoField_stringz */
/* WSLUA_ARG_Protofield_uint8_ABBR abbreviated name of the field (the string used in filters) */
/* WSLUA_OPTARG_Protofield_uint8_NAME Actual name of the field (the string that appears in the tree) */
/* WSLUA_OPTARG_Protofield_uint8_DESC description of the field */
diff --git a/epan/wslua/wslua_tvb.c b/epan/wslua/wslua_tvb.c
index 188587ed3b..dea731aea6 100644
--- a/epan/wslua/wslua_tvb.c
+++ b/epan/wslua/wslua_tvb.c
@@ -326,7 +326,7 @@ int ByteArray_register(lua_State* L) {
* To avoid using a pointer from Lua to Wireshark's that is already freed, we maintain a list of the pointers with
* a marker that track's it's expiry.
*
- * All pointers are marked as expired when the dissection of the current frame is finished of when the garbage
+ * All pointers are marked as expired when the dissection of the current frame is finished or when the garbage
* collector tries to free the object referring to the pointer, whichever comes first.
*
* All allocated memory chunks used for tracking the pointers' state are freed after marking the pointer as expired