libarchive: open_zipped() does not need to check extensions for e.g. gzip
[oweals/busybox.git] / debianutils / pipe_progress.c
index ced5fb307b8e7a3dc2325385f1bb3d69721434d8..2c7444f3118b0ece3e853d2c6053cbab99db2c1a 100644 (file)
@@ -4,8 +4,12 @@
  *
  * Copyright (C) 2003 by Rob Landley <rob@landley.net>, Joey Hess
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+
+//usage:#define pipe_progress_trivial_usage NOUSAGE_STR
+//usage:#define pipe_progress_full_usage ""
+
 #include "libbb.h"
 
 #define PIPE_PROGRESS_SIZE 4096
@@ -24,12 +28,12 @@ int pipe_progress_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
                time_t new_time = time(NULL);
                if (new_time != t) {
                        t = new_time;
-                       fputc('.', stderr);
+                       bb_putchar_stderr('.');
                }
                full_write(STDOUT_FILENO, buf, len);
        }
 
-       fputc('\n', stderr);
+       bb_putchar_stderr('\n');
 
        return 0;
 }