corrected the separator when using URL globbing

This commit is contained in:
Daniel Stenberg 2001-01-08 14:48:34 +00:00
Родитель 803005892c
Коммит 39e939a507
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}