From ab638bb6fcb5171dcfafea6c17e3e6c464f65e05 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 26 Dec 2012 22:24:15 +0000 Subject: geoip_db_get_paths() is exported from libwireshark, so it has to exist regardless of whether we have GeoIP or not. However, regardless of whether it's exported from GeoIP or not, it should return a g_mallocated string. svn path=/trunk/; revision=46798 --- epan/geoip_db.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'epan/geoip_db.c') diff --git a/epan/geoip_db.c b/epan/geoip_db.c index a3de9fd481..5b79b64e5f 100644 --- a/epan/geoip_db.c +++ b/epan/geoip_db.c @@ -596,6 +596,11 @@ geoip_db_lookup_ipv6(guint dbnum _U_, guint32 addr _U_, const char *not_found) { return not_found; } +gchar * +geoip_db_get_paths(void) { + return g_strdup(""); +} + #endif /* HAVE_GEOIP */ /* -- cgit v1.2.1