From: Daniel Stenberg Date: Mon, 8 Jan 2001 14:48:34 +0000 (+0000) Subject: corrected the separator when using URL globbing X-Git-Tag: curl_7_6-pre3~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39e939a5079d39998558fc862b075372d4ed44c3;p=thirdparty%2Fcurl.git corrected the separator when using URL globbing --- diff --git a/src/main.c b/src/main.c index a47d507958..fa49688d87 100644 --- a/src/main.c +++ b/src/main.c @@ -1530,7 +1530,7 @@ operate(struct Configurable *config, int argc, char *argv[]) /* save outfile pattern before expansion */ outfiles = urlnode->outfile?strdup(urlnode->outfile):NULL; - if (outfiles && strequal(outfiles, "-") && urlnum > 1) { + if (!outfiles || strequal(outfiles, "-") && urlnum > 1) { /* multiple files extracted to stdout, insert separators! */ separator = 1; }