tool_operate: Added support for performing URL specific operations
This commit is contained in:
Родитель
c5f8e2f5f4
Коммит
8cf63f88c2
|
@ -1844,9 +1844,16 @@ int operate(struct Configurable *config, int argc, argv_item_t argv[])
|
||||||
list_engines(engines);
|
list_engines(engines);
|
||||||
curl_slist_free_all(engines);
|
curl_slist_free_all(engines);
|
||||||
}
|
}
|
||||||
/* Perform the main operation */
|
/* Perform the main operations */
|
||||||
else
|
else {
|
||||||
result = operate_do(config);
|
struct Configurable *operation = config;
|
||||||
|
|
||||||
|
while(!result && operation) {
|
||||||
|
result = operate_do(operation);
|
||||||
|
|
||||||
|
operation = operation->next;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Perform the cleanup */
|
/* Perform the cleanup */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче