/[tar]/tar/src/misc.c
ViewVC logotype

Diff of /tar/src/misc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.13 by gray, Thu Jul 24 14:44:51 2003 UTC revision 1.14 by gray, Fri Sep 5 13:24:16 2003 UTC
# Line 660  read_error_details (char const *name, of Line 660  read_error_details (char const *name, of
660    char buf[UINTMAX_STRSIZE_BOUND];    char buf[UINTMAX_STRSIZE_BOUND];
661    int e = errno;    int e = errno;
662    ERROR ((0, e,    ERROR ((0, e,
663            _("%s: Read error at byte %s, reading %lu bytes"),            ngettext ("%s: Read error at byte %s, reading %lu byte",
664                        "%s: Read error at byte %s, reading %lu bytes",
665                        size),
666            quotearg_colon (name), STRINGIFY_BIGINT (offset, buf),            quotearg_colon (name), STRINGIFY_BIGINT (offset, buf),
667            (unsigned long) size));            (unsigned long) size));
668  }  }
# Line 671  read_warn_details (char const *name, off Line 673  read_warn_details (char const *name, off
673    char buf[UINTMAX_STRSIZE_BOUND];    char buf[UINTMAX_STRSIZE_BOUND];
674    int e = errno;    int e = errno;
675    WARN ((0, e,    WARN ((0, e,
676           _("%s: Warning: Read error at byte %s, reading %lu bytes"),           ngettext ("%s: Warning: Read error at byte %s, reading %lu byte",
677                       "%s: Warning: Read error at byte %s, reading %lu bytes",
678                       size),
679           quotearg_colon (name), STRINGIFY_BIGINT (offset, buf),           quotearg_colon (name), STRINGIFY_BIGINT (offset, buf),
680           (unsigned long) size));           (unsigned long) size));
681  }  }
# Line 688  read_fatal_details (char const *name, of Line 692  read_fatal_details (char const *name, of
692    char buf[UINTMAX_STRSIZE_BOUND];    char buf[UINTMAX_STRSIZE_BOUND];
693    int e = errno;    int e = errno;
694    FATAL_ERROR ((0, e,    FATAL_ERROR ((0, e,
695                  _("%s: Read error at byte %s, reading %lu bytes"),                  ngettext ("%s: Read error at byte %s, reading %lu byte",
696                              "%s: Read error at byte %s, reading %lu bytes",
697                              size),
698                  quotearg_colon (name), STRINGIFY_BIGINT (offset, buf),                  quotearg_colon (name), STRINGIFY_BIGINT (offset, buf),
699                  (unsigned long) size));                  (unsigned long) size));
700  }  }
# Line 811  write_error_details (char const *name, s Line 817  write_error_details (char const *name, s
817    if (status < 0)    if (status < 0)
818      write_error (name);      write_error (name);
819    else    else
820      ERROR ((0, 0, _("%s: Wrote only %lu of %lu bytes"),      ERROR ((0, 0,
821                ngettext ("%s: Wrote only %lu of %lu byte",
822                          "%s: Wrote only %lu of %lu bytes",
823                          record_size),
824              name, (unsigned long) status, (unsigned long) record_size));              name, (unsigned long) status, (unsigned long) record_size));
825  }  }
826    

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26