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=b7c2a347bc704e409807d81d0a190c5220d896e6;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..87167d38 100644 --- a/src/archives.c +++ b/src/archives.c @@ -248,7 +248,8 @@ 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'", + quote_filename(fnamebuf,256,ti->Name)); r= ti->Size % TARBLKSZ; if (r > 0) r= safe_read(tc->backendpipe,databuf,TARBLKSZ - r); }