bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: dd PATCH: add conv=direct


From: Jim Meyering
Subject: Re: dd PATCH: add conv=direct
Date: Thu, 08 Apr 2004 18:05:11 +0200

Thanks again for that patch.
I'm making one other minor change:

Index: src/dd.c
===================================================================
RCS file: /fetish/cu/src/dd.c,v
retrieving revision 1.157
diff -u -p -r1.157 dd.c
--- a/src/dd.c  8 Apr 2004 15:25:39 -0000       1.157
+++ b/src/dd.c  8 Apr 2004 16:03:39 -0000
@@ -1235,7 +1235,7 @@ dd_copy (void)
     {
       if (errno != ENOSYS && errno != EINVAL)
        {
-         error (0, errno, "fdatasync %s", quote (output_file));
+         error (0, errno, _("fdatasync failed for %s"), quote (output_file));
          exit_status = EXIT_FAILURE;
        }
       conversions_mask |= C_FSYNC;
@@ -1245,7 +1245,7 @@ dd_copy (void)
     while (fsync (STDOUT_FILENO) != 0)
       if (errno != EINTR)
        {
-         error (0, errno, "fsync %s", quote (output_file));
+         error (0, errno, _("fsync failed for %s"), quote (output_file));
          return EXIT_FAILURE;
        }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]