Skip to content
Snippets Groups Projects
Commit 8cf63f88 authored by Steve Holme's avatar Steve Holme
Browse files

tool_operate: Added support for performing URL specific operations

parent c5f8e2f5
No related branches found
No related tags found
No related merge requests found
......@@ -1844,9 +1844,16 @@ int operate(struct Configurable *config, int argc, argv_item_t argv[])
list_engines(engines);
curl_slist_free_all(engines);
}
/* Perform the main operation */
else
result = operate_do(config);
/* Perform the main operations */
else {
struct Configurable *operation = config;
while(!result && operation) {
result = operate_do(operation);
operation = operation->next;
}
}
}
/* Perform the cleanup */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment