From ae52c4c647bdcbc00117ad4de45b2386333eaae9 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 27 Dec 2014 22:32:40 -0600 Subject: [PATCH] fixed some reversed parameters introduced in the previous commit --- mfapi/apicalls/file_get_links.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mfapi/apicalls/file_get_links.c b/mfapi/apicalls/file_get_links.c index 40f3056..c31e438 100644 --- a/mfapi/apicalls/file_get_links.c +++ b/mfapi/apicalls/file_get_links.c @@ -64,7 +64,7 @@ int mfconn_api_file_get_links(mfconn * conn, mffile * file, "?quick_key=%s" "&%s" "&response_format=json", - link_params, quickkey); + quickkey,link_params); if (api_call == NULL) { fprintf(stderr, "mfconn_create_signed_get failed\n"); if(link_params != NULL) free(link_params);