commit fc89c9001a9df4312083343d1cabb3a8ad055af5 from: Omar Polo date: Tue Jan 03 09:58:19 2023 UTC add conf_limit_user_connection prototype at the top of parse.y different yacc implementations (e.g. GNU bison) may put the various parts in a different order, and so the definition of the function may not be visible in the generated code. commit - 40b85cca5d86ebef3a353efd464af989c3ebf18b commit + fc89c9001a9df4312083343d1cabb3a8ad055af5 blob - 580f43381ccf163eac2c738800e7efd25c7562e4 blob + 709ffeed62560387b52252f4db644c469348ebfc --- gotd/parse.y +++ gotd/parse.y @@ -87,6 +87,7 @@ static int errors; static struct gotd *gotd; static struct gotd_repo *new_repo; +static int conf_limit_user_connections(const char *, int); static struct gotd_repo *conf_new_repo(const char *); static void conf_new_access_rule(struct gotd_repo *, enum gotd_access, int, char *);