From 88c66f647fe7690dc10f0f9aa185ca1126e4be24 Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Mon, 3 Dec 2012 22:45:39 -0500 Subject: [PATCH] Revert "added got_allow_ip() wrapper around have_allow_ip() to fix an exported symbol issue noticed by Franck" This reverts commit e57cfa2e235261b960986ecae0c7e86307159529. This is done because libfko now restricts the symbols it exports to only those functions that should be visible when making use of the library - internal libfko functions should not be exported. --- lib/fko_message.c | 6 ------ lib/fko_message.h | 1 - 2 files changed, 7 deletions(-) diff --git a/lib/fko_message.c b/lib/fko_message.c index cb01feca..b057e36d 100644 --- a/lib/fko_message.c +++ b/lib/fko_message.c @@ -93,12 +93,6 @@ have_allow_ip(const char *msg) return(res); } -int -got_allow_ip(const char *msg) -{ - return have_allow_ip(msg); -} - static int have_port(const char *msg) { diff --git a/lib/fko_message.h b/lib/fko_message.h index cc0e2ce6..d36d58e7 100644 --- a/lib/fko_message.h +++ b/lib/fko_message.h @@ -38,7 +38,6 @@ int validate_cmd_msg(const char *msg); int validate_access_msg(const char *msg); int validate_nat_access_msg(const char *msg); int validate_proto_port_spec(const char *msg); -int got_allow_ip(const char *msg); #endif /* FKO_MESSAGE_H */