]> err.no Git - dpkg/commitdiff
Make "gobble replaced file" into something a bit more sensible and understandable...
authorTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 22:40:12 +0000 (23:40 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 22:40:12 +0000 (23:40 +0100)
src/archives.c

index 9ab31588ff16ee3036a910f7e7f549e28446a6e8..87167d384b1fb99cf16e786fc9f014c1e1d7614b 100644 (file)
@@ -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);
   }