aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-08-10 13:41:13 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-08-10 13:41:13 +0000
commitec3ab9ec3e56a8d2c4f037a8714eba007c0dfcf3 (patch)
tree05b2dac45e4d53ecfac0cd8657236f9e4ded41b7 /epan/tvbuff.c
parent19dd9f815952fd4d841c1935319c2987781c51be (diff)
rename ep_tvb_get_string() to tvb_get_ephemeral_string() asnd update the documentation in README.developer
svn path=/trunk/; revision=15270
Diffstat (limited to 'epan/tvbuff.c')
-rw-r--r--epan/tvbuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/tvbuff.c b/epan/tvbuff.c
index 2c67d564db..19ec18ccc5 100644
--- a/epan/tvbuff.c
+++ b/epan/tvbuff.c
@@ -1805,7 +1805,7 @@ tvb_get_string(tvbuff_t *tvb, gint offset, gint length)
* after the current packet has been dissected.
*/
guint8 *
-ep_tvb_get_string(tvbuff_t *tvb, gint offset, gint length)
+tvb_get_ephemeral_string(tvbuff_t *tvb, gint offset, gint length)
{
const guint8 *ptr;
guint8 *strbuf = NULL;