Skip to content
Snippets Groups Projects
Commit 6736c161 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

removed the check that prevents -T and -o beinged used simultaneously!

parent 1cc8af27
No related branches found
No related tags found
No related merge requests found
......@@ -1308,10 +1308,12 @@ int main(int argc, char *argv[])
if (outfiles)
config.outfile = strdup(outfiles);
#if 0
if(config.outfile && config.infile) {
helpf("you can't both upload and download!\n");
return CURLE_FAILED_INIT;
}
#endif
if (config.outfile || config.remotefile) {
/*
......
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