From 6736c1610c47ee5faad0c34a51a290bc26397d17 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 13 Nov 2000 11:59:19 +0000 Subject: [PATCH] removed the check that prevents -T and -o beinged used simultaneously! --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.c b/src/main.c index 2c88047..82cee73 100644 --- a/src/main.c +++ b/src/main.c @@ -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) { /* -- 2.7.4