commit 67f822ee222a3d9a131449ec1c80c275ca122e1b from: Omar Polo via: Thomas Adam date: Fri Jan 06 09:33:00 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 - 0781db0e2428460cdb0b48d3797899eede6afa44 commit + 67f822ee222a3d9a131449ec1c80c275ca122e1b 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 *);