From 866b2c9a57caa21668bb9ab0e6c1d08fa44db90e Mon Sep 17 00:00:00 2001 From: Deng Zhengrong Date: Thu, 7 Jun 2012 04:16:51 +0800 Subject: [PATCH] x11: fix the wrong parameter sequence in pax11publish --- src/utils/pax11publish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/pax11publish.c b/src/utils/pax11publish.c index 0f9a030e0..16cf8666c 100644 --- a/src/utils/pax11publish.c +++ b/src/utils/pax11publish.c @@ -195,7 +195,7 @@ int main(int argc, char *argv[]) { pa_client_conf_free(conf); - if (pa_authkey_load_auto(cookie_file, cookie, TRUE, sizeof(cookie)) < 0) { + if (pa_authkey_load_auto(cookie_file, TRUE, cookie, sizeof(cookie)) < 0) { fprintf(stderr, _("Failed to load cookie data\n")); goto finish; }