From b3912eae9b2e1b21c065501e0dc0b9a7f4607433 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 30 Mar 2016 02:32:34 -0500 Subject: [PATCH] authd/provider: it's va_start. --- authd/provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authd/provider.c b/authd/provider.c index 302eebb3..0b03b286 100644 --- a/authd/provider.c +++ b/authd/provider.c @@ -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);