0
0
Fork 0
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:
Elizabeth Myers 2016-03-30 02:32:34 -05:00
parent 64afc35817
commit b3912eae9b

View file

@ -209,7 +209,7 @@ reject_client(struct auth_client *auth, provider_t id, const char *data, const c
if(data == NULL) if(data == NULL)
data = "*"; data = "*";
va_begin(fmt, args); va_start(fmt, args);
vsnprintf(buf, sizeof(buf), fmt, args); vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args); va_end(args);