Deleted Added
full compact
80c80
< int density = 0; /* density in bytes/0.1" */
---
> int density = 0; /* density in bytes/0.1" " <- this is for hilit19 */
169a170,176
> /* XXX restore is unable to restore dumps that
> were created with a blocksize larger than 32K.
> Possibly a bug in the scsi tape driver. */
> if ( ntrec > 32 ) {
> msg("please choose a blocksize <= 32\n");
> exit(X_ABORT);
> }
238a246
> * hilit19 hits again: "
365c373
< * (1.0/density) /* 0.1" / byte */
---
> * (1.0/density) /* 0.1" / byte " */
369,370c377,378
< * 15.48 /* 0.1" / streaming-stop */
< ) * (1.0 / tsize ); /* tape / 0.1" */
---
> * 15.48 /* 0.1" / streaming-stop " */
> ) * (1.0 / tsize ); /* tape / 0.1" " */
378c386
< * (1.0/density) /* 0.1" / byte */
---
> * (1.0/density) /* 0.1" / byte " */
382,383c390,391
< * tenthsperirg /* 0.1" / IRG */
< ) * (1.0 / tsize ); /* tape / 0.1" */
---
> * tenthsperirg /* 0.1" / IRG " */
> ) * (1.0 / tsize ); /* tape / 0.1" " */
442a451
> (void)time((time_t *)&(tend_writing));
447c456
< msg("DUMP: %ld tape blocks\n",spcl.c_tapea);
---
> msg("%ld tape blocks\n", spcl.c_tapea);
449c458
< msg("DUMP: %ld tape blocks on %d volumes(s)\n",
---
> msg("%ld tape blocks on %d volumes(s)\n",
450a460,468
>
> /* report dump performance, avoid division through zero */
> if (tend_writing - tstart_writing == 0)
> msg("finished in less than a second\n");
> else
> msg("finished in %d seconds, throughput %d KBytes/sec\n",
> tend_writing - tstart_writing,
> spcl.c_tapea / (tend_writing - tstart_writing));
>