aboutsummaryrefslogtreecommitdiffstats
path: root/epan/reassemble.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-07-14 19:07:09 +0000
committerGuy Harris <guy@alum.mit.edu>2013-07-14 19:07:09 +0000
commitcc4197b1fe23a045b7906ee26e1cfd49340a9f9c (patch)
treeb930d45887fe3a4bd9c32b96ebff6b9f3b462928 /epan/reassemble.c
parentd3be9807c4352f0cd1f68fdd6819f80d5360d6ce (diff)
Fix a comment.
svn path=/trunk/; revision=50588
Diffstat (limited to 'epan/reassemble.c')
-rw-r--r--epan/reassemble.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/reassemble.c b/epan/reassemble.c
index cdd609af87..a2605be946 100644
--- a/epan/reassemble.c
+++ b/epan/reassemble.c
@@ -563,13 +563,13 @@ insert_fd_head(reassembly_table *table, fragment_data *fd_head,
* (with one exception) all allocated memory for matching reassembly.
*
* The exception is :
- * If the PDU was already completely reassembled, then the buffer containing the
- * reassembled data WILL NOT be free()d, and the pointer to that buffer will be
+ * If the PDU was already completely reassembled, then the tvbuff containing the
+ * reassembled data WILL NOT be free()d, and the pointer to that tvbuff will be
* returned.
* Othervise the function will return NULL.
*
- * So, if you call fragment_delete and it returns non-NULL, YOU are responsible to
- * tvb_free() that buffer.
+ * So, if you call fragment_delete and it returns non-NULL, YOU are responsible
+ * to tvb_free() that tvbuff.
*/
tvbuff_t *
fragment_delete(reassembly_table *table, const packet_info *pinfo,