From: Josh Coalson Date: Tue, 14 Nov 2006 05:21:50 +0000 (+0000) Subject: disallow multiple input FLAC files when --import-tags-from=- is used (SF#1082577... X-Git-Tag: 1.2.0~296 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03c9d224dfde4995a305b72043c8c03a59eb5ff7;p=platform%2Fupstream%2Fflac.git disallow multiple input FLAC files when --import-tags-from=- is used (SF#1082577 sourceforge.net/tracker/index.php?func=detail&aid=1082577&group_id=13478&atid=113478) --- diff --git a/src/metaflac/usage.c b/src/metaflac/usage.c index 366fb8d..d4a8e1b 100644 --- a/src/metaflac/usage.c +++ b/src/metaflac/usage.c @@ -138,7 +138,8 @@ int long_usage(const char *message, ...) fprintf(out, " should be of the form NAME=VALUE. Multi-line comments\n"); fprintf(out, " are currently not supported. Specify --remove-all-tags\n"); fprintf(out, " and/or --no-utf8-convert before --import-tags-from if\n"); - fprintf(out, " necessary.\n"); + fprintf(out, " necessary. If FILE is '-' (stdin), only one FLAC file\n"); + fprintf(out, " may be specified.\n"); fprintf(out, "--export-tags-to=FILE Export tags to a file. Use '-' for stdin. Each line\n"); fprintf(out, " will be of the form NAME=VALUE. Specify\n"); fprintf(out, " --no-utf8-convert if necessary.\n");