ifupdown: save some 100+ bytes of code in addstr()
[oweals/busybox.git] / archival / bunzip2.c
index faf997bbe73a93eeafb9d88ed8737295a08d4fe2..757001fe463586ec5b8411d9761836b897c5bc98 100644 (file)
@@ -32,13 +32,13 @@ int bunzip2_main(int argc, char **argv)
        }
 
        /* if called as bzcat force the stdout flag */
-       if ((opt & BUNZIP2_OPT_STDOUT) || bb_applet_name[2] == 'c')
+       if ((opt & BUNZIP2_OPT_STDOUT) || applet_name[2] == 'c')
                filename = 0;
 
        /* Check that the input is sane.  */
        if (isatty(src_fd) && (opt & BUNZIP2_OPT_FORCE) == 0) {
-               bb_error_msg_and_die("Compressed data not read from terminal.  "
-                               "Use -f to force it.");
+               bb_error_msg_and_die("compressed data not read from terminal, "
+                               "use -f to force it");
        }
 
        if (filename) {