From 2cb1eb955f3038e8e1a1fde655186fe786cb2a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Thu, 16 Sep 2021 00:40:13 +0100 Subject: [PATCH] epan: Rename SMI dependency to "libsmi" --- epan/epan.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/epan/epan.c b/epan/epan.c index d10ec5db48..0030b3c8ff 100644 --- a/epan/epan.c +++ b/epan/epan.c @@ -849,11 +849,11 @@ epan_get_compiled_version_info(GString *str) g_string_append(str, ", without libxml2"); #endif /* HAVE_LIBXML2 */ - /* SNMP */ + /* libsmi */ #ifdef HAVE_LIBSMI - g_string_append(str, ", with SMI " SMI_VERSION_STRING); -#else /* no SNMP library */ - g_string_append(str, ", without SMI"); + g_string_append(str, ", with libsmi " SMI_VERSION_STRING); +#else + g_string_append(str, ", without libsmi"); #endif /* HAVE_LIBSMI */ } @@ -902,7 +902,7 @@ epan_get_runtime_version_info(GString *str) #endif #endif /* HAVE_ZSTD */ - /* SNMP */ + /* libsmi */ #ifdef HAVE_SMI_VERSION_STRING g_string_append_printf(str, ", with libsmi %s", smi_version_string); #endif /* HAVE_SMI_VERSION_STRING */