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

tool_operate: Introduced new operate() function

parent e5524b7b
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@ static curl_off_t VmsSpecialSize(const char * name,
#endif /* __VMS */
int operate(struct Configurable *config, int argc, argv_item_t argv[])
static int operate_do(struct Configurable *config, int argc, argv_item_t argv[])
{
char errorbuffer[CURL_ERROR_SIZE];
struct ProgressData progressbar;
......@@ -1839,3 +1839,8 @@ int operate(struct Configurable *config, int argc, argv_item_t argv[])
return res;
}
int operate(struct Configurable *config, int argc, argv_item_t argv[])
{
return operate_do(config, argc, argv);
}
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