From a5ab10629818ec9eae10e882a7ea7cffb87cc664 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 30 Mar 2016 03:38:30 -0500 Subject: [PATCH] authd/provider: fix misordering in macro --- authd/provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authd/provider.c b/authd/provider.c index c2f183e5..a3b46c55 100644 --- a/authd/provider.c +++ b/authd/provider.c @@ -210,7 +210,7 @@ reject_client(struct auth_client *auth, provider_t id, const char *data, const c if(data == NULL) data = "*"; - va_start(fmt, args); + va_start(args, fmt); vsnprintf(buf, sizeof(buf), fmt, args); va_end(args);