summaryrefslogtreecommitdiff
path: root/ui/follow.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-12-23 15:53:13 +0000
committerBill Meier <wmeier@newsguy.com>2013-12-23 15:53:13 +0000
commit8ab9c55618a99417b4972f37ab3ee7da58cca0cf (patch)
tree24e3464ee075e7289b2ad4a7e554b251e6355e0b /ui/follow.c
parenteecbfd1f3bf613704c043f79543eb5133a046f1d (diff)
downloadwireshark-8ab9c55618a99417b4972f37ab3ee7da58cca0cf.tar.gz
From Ville Skyttä: Spelling Fixes
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9591 svn path=/trunk/; revision=54387
Diffstat (limited to 'ui/follow.c')
-rw-r--r--ui/follow.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/follow.c b/ui/follow.c
index 4756bb6279..4fcef382cc 100644
--- a/ui/follow.c
+++ b/ui/follow.c
@@ -65,7 +65,8 @@ parse_http_header(char *data, size_t len, size_t *content_start)
* In order to parse header, we duplicate data and tokenize lines.
* We aren't interested in actual data, so use g_strndup instead of memcpy
* to (possibly) copy fewer bytes (e.g., if a nul byte exists in data)
- * This also ensures that we have a terminated string for futher processing.
+ * This also ensures that we have a terminated string for further
+ * processing.
*/
tmp = copy = g_strndup(data, len);
if (!tmp) {