Ahem: add new faq entry to list at top of FAQ.html
[oweals/busybox.git] / archival / rpm2cpio.c
index 7b50595184494f232ebf645bdf706745f114c16b..8316d2242338dab6b615c99f8eeed5421bc8de63 100644 (file)
@@ -48,7 +48,7 @@ struct rpm_header {
        uint32_t size; /* Size of store (4 bytes) */
 };
 
-void skip_header(int rpm_fd)
+static void skip_header(int rpm_fd)
 {
        struct rpm_header header;
 
@@ -73,7 +73,7 @@ extern int rpm2cpio_main(int argc, char **argv)
        unsigned char magic[2];
 
        if (argc == 1) {
-               rpm_fd = fileno(stdin);
+               rpm_fd = STDIN_FILENO;
        } else {
                rpm_fd = bb_xopen(argv[1], O_RDONLY);
        }
@@ -96,7 +96,7 @@ extern int rpm2cpio_main(int argc, char **argv)
        }
 
        check_header_gzip(rpm_fd);
-       if (inflate_gunzip(rpm_fd, fileno(stdout)) != 0) {
+       if (inflate_gunzip(rpm_fd, STDOUT_FILENO) != 0) {
                bb_error_msg("Error inflating");
        }