summaryrefslogtreecommitdiff
path: root/epan/ipproto.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/ipproto.c')
-rw-r--r--epan/ipproto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/ipproto.c b/epan/ipproto.c
index 2089e5793c..7668471073 100644
--- a/epan/ipproto.c
+++ b/epan/ipproto.c
@@ -273,7 +273,7 @@ value_string_ext ipproto_val_ext = VALUE_STRING_EXT_INIT(ipproto_val);
const char *ipprotostr(const int proto) {
const char *s;
- if ((s = match_strval_ext(proto, &ipproto_val_ext)) != NULL)
+ if ((s = try_val_to_str_ext(proto, &ipproto_val_ext)) != NULL)
return s;
s = "Unknown";