summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-14 21:40:30 +0000
committerJim Meyering <jim@meyering.net>2000-08-14 21:40:30 +0000
commit5f14914c493c6454ef0b37d4b15d73cb7a35ef76 (patch)
treede355064ec9877637a2b34be7cf2b6c1e664ee28 /src
parent8c446739e7b661c00ead09d8a64278439a2503c7 (diff)
downloadcoreutils-5f14914c493c6454ef0b37d4b15d73cb7a35ef76.tar.xz
remove incorrect FIXME comment.
Diffstat (limited to 'src')
-rw-r--r--src/tee.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tee.c b/src/tee.c
index 43fec1e61..48c42d173 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)