Update copyright and close file descriptors (noted by Axel Kittenberger).
authorMatt Kraai <kraai@debian.org>
Fri, 7 Dec 2001 16:27:37 +0000 (16:27 -0000)
committerMatt Kraai <kraai@debian.org>
Fri, 7 Dec 2001 16:27:37 +0000 (16:27 -0000)
coreutils/dd.c

index d46db82..818ab77 100644 (file)
@@ -3,7 +3,7 @@
  * Mini dd implementation for busybox
  *
  *
- * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
+ * Copyright (C) 2000,2001  Matt Kraai
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -147,6 +147,12 @@ int dd_main(int argc, char **argv)
                        out_part++;
        }
 
+       if (close (ifd) < 0)
+               perror_msg_and_die("%s", infile);
+
+       if (close (ofd) < 0)
+               perror_msg_and_die("%s", outfile);
+
        fprintf(stderr, "%ld+%ld records in\n", (long)in_full, (long)in_part);
        fprintf(stderr, "%ld+%ld records out\n", (long)out_full, (long)out_part);