added got_allow_ip() wrapper around have_allow_ip() to fix an exported symbol issue noticed by Franck

This commit is contained in:
Michael Rash
2012-12-01 22:45:55 -05:00
parent e3c4c045c6
commit e57cfa2e23
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -93,6 +93,12 @@ 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)
{
+1
View File
@@ -38,6 +38,7 @@ 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 */