Test applets containing numbers in their name. Thanks to Larry Doolittle.
[oweals/busybox.git] / tee.c
diff --git a/tee.c b/tee.c
index 621801336eeef1eb40978826092904c47afb73b0..aa3098c6a580873618e52bdac65966d1482f46b1 100644 (file)
--- a/tee.c
+++ b/tee.c
@@ -2,7 +2,7 @@
 /*
  * Mini tee implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -47,7 +47,7 @@ tee_main(int argc, char **argv)
        while (optind < argc) {
                if ((files[nfiles++] = fopen(argv[optind++], mode)) == NULL) {
                        nfiles--;
-                       errorMsg("%s: %s\n", argv[optind-1], strerror(errno));
+                       perror_msg("%s", argv[optind-1]);
                        status = 1;
                }
        }