aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mmse.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-10 13:41:13 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-10 13:41:13 +0000
commit1d203a4a410d7725b011948efc5ba91b54691533 (patch)
tree05b2dac45e4d53ecfac0cd8657236f9e4ded41b7 /epan/dissectors/packet-mmse.c
parent28e16917f79ee5a014190135bcecf053518d0017 (diff)
rename ep_tvb_get_string() to tvb_get_ephemeral_string() asnd update the documentation in README.developer
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15270 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-mmse.c')
-rw-r--r--epan/dissectors/packet-mmse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mmse.c b/epan/dissectors/packet-mmse.c
index 142e5909ba..04572daa76 100644
--- a/epan/dissectors/packet-mmse.c
+++ b/epan/dissectors/packet-mmse.c
@@ -538,7 +538,7 @@ get_encoded_strval(tvbuff_t *tvb, guint offset, char **strval)
*strval = "";
} else {
/* \todo Something with "Char-set", skip for now */
- *strval = (char *)ep_tvb_get_string(tvb, offset + count + 1, length - 1);
+ *strval = (char *)tvb_get_ephemeral_string(tvb, offset + count + 1, length - 1);
}
return count + length;
} else