Seems silly to ask translators to expend work on these, especially in
pluralized variants.
else
AH->lookaheadLen = 0; /* Don't bother since we've reset the file */
-#if 0
- write_msg(modulename, ngettext("read %lu byte into lookahead buffer\n",
- "read %lu bytes into lookahead buffer\n",
- AH->lookaheadLen),
- (unsigned long) AH->lookaheadLen);
-#endif
-
/* Close the file */
if (wantClose)
if (fclose(fh) != 0)
die_horribly(AH, modulename, "internal error -- neither th nor fh specified in tarReadRaw()\n");
}
-#if 0
- write_msg(modulename, ngettext("requested %d byte, got %d from lookahead and %d from file\n",
- "requested %d bytes, got %d from lookahead and %d from file\n",
- reqLen),
- reqLen, used, res);
-#endif
-
ctx->tarFHpos += res + used;
return (res + used);