mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
authd/provider: it's va_start.
This commit is contained in:
parent
64afc35817
commit
b3912eae9b
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ reject_client(struct auth_client *auth, provider_t id, const char *data, const c
|
|||
if(data == NULL)
|
||||
data = "*";
|
||||
|
||||
va_begin(fmt, args);
|
||||
va_start(fmt, args);
|
||||
vsnprintf(buf, sizeof(buf), fmt, args);
|
||||
va_end(args);
|
||||
|
||||
|
|
Loading…
Reference in a new issue