Control: tags -1 + patch Please find attached a patch.
Description: Fix FTBFS with GCC-15. Bug-Debian: https://bugs.debian.org/1097525 Author: Yavor Doganov <[email protected]> Forwarded: no Last-Update: 2025-09-22 ---
--- openvpn-auth-ldap.orig/tools/lemon.c +++ openvpn-auth-ldap/tools/lemon.c @@ -59,12 +59,12 @@ static struct action *Action_sort(struct action *); /********** From the file "build.h" ************************************/ -void FindRulePrecedences(); -void FindFirstSets(); -void FindStates(); -void FindLinks(); -void FindFollowSets(); -void FindActions(); +void FindRulePrecedences(struct lemon *); +void FindFirstSets(struct lemon *); +void FindStates(struct lemon *); +void FindLinks(struct lemon *); +void FindFollowSets(struct lemon *); +void FindActions(struct lemon *); /********* From the file "configlist.h" *********************************/ void Configlist_init(void);

