Use sysexits.h for better exit-codes
[mmh] / sbr / cpydata.c
index 6fa21f7..9cd8d38 100644 (file)
@@ -6,6 +6,7 @@
 ** complete copyright information.
 */
 
+#include <sysexits.h>
 #include <unistd.h>
 #include <h/mh.h>
 
@@ -17,9 +18,9 @@ cpydata(int in, int out, char *ifile, char *ofile)
 
        while ((i = read(in, buffer, sizeof(buffer))) > 0) {
                if (write(out, buffer, i) != i)
-                       adios(ofile, "error writing");
+                       adios(EX_IOERR, ofile, "error writing");
        }
 
        if (i == -1)
-               adios(ifile, "error reading");
+               adios(EX_IOERR, ifile, "error reading");
 }