From: Tim Kientzle Date: Sun, 12 Apr 2015 17:59:46 +0000 (-0700) Subject: Reword this warning message. X-Git-Tag: v3.1.900a~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc8f24cf6753365e570a9e16d8dc49c6ffdd28f6;p=thirdparty%2Flibarchive.git Reword this warning message. --- diff --git a/libarchive/archive_write_disk_posix.c b/libarchive/archive_write_disk_posix.c index c1290eb3a..e14d6942e 100644 --- a/libarchive/archive_write_disk_posix.c +++ b/libarchive/archive_write_disk_posix.c @@ -1467,7 +1467,7 @@ _archive_write_disk_data_block(struct archive *_a, return (r); if ((size_t)r < size) { archive_set_error(&a->archive, 0, - "Write request too large"); + "Too much data: Truncating file at %ju bytes", (uintmax_t)a->filesize); return (ARCHIVE_WARN); } #if ARCHIVE_VERSION_NUMBER < 3999000