From: Jim Meyering Date: Mon, 14 Aug 2000 21:40:30 +0000 (+0000) Subject: remove incorrect FIXME comment. X-Git-Tag: FILEUTILS-4_0y~32 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=5f14914c493c6454ef0b37d4b15d73cb7a35ef76;p=thirdparty%2Fcoreutils.git remove incorrect FIXME comment. --- diff --git a/src/tee.c b/src/tee.c index 43fec1e61e..48c42d1735 100644 --- a/src/tee.c +++ b/src/tee.c @@ -145,8 +145,8 @@ main (int argc, char **argv) signal (SIGPIPE, SIG_IGN); #endif - /* FIXME: warn if tee is given no file arguments. - In that case it's just a slow imitation of `cat.' */ + /* Do *not* warn if tee is given no file arguments. + POSIX requires that it work when given no arguments. */ errs = tee (argc - optind, (const char **) &argv[optind]); if (close (0) != 0)