From: Willy Tarreau Date: Mon, 11 May 2026 13:05:41 +0000 (+0200) Subject: CLEANUP: auth: remove undeclared auth_resolve_groups() from auth.h X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=adb9a5f82f9e246ecdd0f45e9930932451d388e5;p=haproxy.git CLEANUP: auth: remove undeclared auth_resolve_groups() from auth.h The function auth_resolve_groups() is declared in auth.h but has no definition anywhere in the codebase anymore, let's just drop it. --- diff --git a/include/haproxy/auth.h b/include/haproxy/auth.h index 2fe2b3515..3aaeeca4d 100644 --- a/include/haproxy/auth.h +++ b/include/haproxy/auth.h @@ -22,7 +22,6 @@ extern struct userlist *userlist; struct userlist *auth_find_userlist(char *name); -unsigned int auth_resolve_groups(struct userlist *l, char *groups); int userlist_postinit(); void userlist_free(struct userlist *ul); struct pattern *pat_match_auth(struct sample *smp, struct pattern_expr *expr, int fill);