From: Tollef Fog Heen Date: Sun, 20 Jan 2008 22:40:12 +0000 (+0100) Subject: Make "gobble replaced file" into something a bit more sensible and understandable... X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=525c31d6b27ba95d2d39a35e4c7bdf4cd5581e60;p=dpkg Make "gobble replaced file" into something a bit more sensible and understandable. Also stop making that string translatable. --- diff --git a/src/archives.c b/src/archives.c index 9ab31588..48f1c6df 100644 --- a/src/archives.c +++ b/src/archives.c @@ -248,7 +248,9 @@ void tarfile_skip_one_forward(struct TarInfo *ti, */ if ((ti->Type == NormalFile0) || (ti->Type == NormalFile1)) { char fnamebuf[256]; - fd_null_copy(tc->backendpipe, ti->Size, _("gobble replaced file `%.255s'"),quote_filename(fnamebuf,256,ti->Name)); + fd_null_copy(tc->backendpipe, ti->Size, + "skipped unpacking file `%.255s' (replaced or excluded?)", + quote_filename(fnamebuf,256,ti->Name)); r= ti->Size % TARBLKSZ; if (r > 0) r= safe_read(tc->backendpipe,databuf,TARBLKSZ - r); }