folder/move: in contrast to the API docs it's folder_key_dst and not folderkey_dst

This commit is contained in:
josch
2014-12-19 19:07:08 +01:00
parent 40f09aebd6
commit b1b32d9ad8

View File

@@ -51,7 +51,7 @@ int mfconn_api_folder_move(mfconn * conn, const char *folder_key_src,
} else { } else {
api_call = mfconn_create_signed_get(conn, 0, "folder/move.php", api_call = mfconn_create_signed_get(conn, 0, "folder/move.php",
"?folder_key_src=%s" "?folder_key_src=%s"
"&folderkey_dst=%s" "&folder_key_dst=%s"
"&response_format=json", "&response_format=json",
folder_key_src, folder_key_src,
folder_key_dst); folder_key_dst);