aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-memcache.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-26 01:06:19 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-26 01:06:19 +0000
commit1823aa007c6339228048b1dbefd5a07ec9f96e1c (patch)
tree6b9ab67dd2094ef231eb0f0f7fa39048332486e7 /epan/dissectors/packet-memcache.c
parent88a5865b64a8856d97b46c16e55c3e183828c740 (diff)
it's ==> its & its ==> it's as needed.
svn path=/trunk/; revision=47891
Diffstat (limited to 'epan/dissectors/packet-memcache.c')
-rw-r--r--epan/dissectors/packet-memcache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-memcache.c b/epan/dissectors/packet-memcache.c
index e8c7d88299..bf3f7d626a 100644
--- a/epan/dissectors/packet-memcache.c
+++ b/epan/dissectors/packet-memcache.c
@@ -873,7 +873,7 @@ dissect_memcache_message (tvbuff_t *tvb, int offset, packet_info *pinfo, proto_t
memcache_tree = proto_item_add_subtree (memcache_item, ett_memcache);
/* Process the packet data. The first line is expected to be a
- * header. If its not a header then we don't dissect.
+ * header. If it's not a header then we don't dissect.
* At this point, we already know if it is a request or a
* response.
*/
@@ -1538,7 +1538,7 @@ memcache_request_dissector (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
offset += (int) (next_token - line);
line = next_token;
- /* check if its expiration or noreply */
+ /* check if it's expiration or noreply */
tokenlen = get_token_len (line, lineend, &next_token);
if (tokenlen == 0) {
return offset; /* neither expiration nor noreply; CRLF */
@@ -1609,7 +1609,7 @@ memcache_request_dissector (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
break;
case OP_FLUSH:
- /* check if its expiration or noreply */
+ /* check if it's expiration or noreply */
tokenlen = get_token_len (line, lineend, &next_token);
if (tokenlen == 0) {
return offset; /* neither expiration nor noreply; CRLF */