Hello misc,

Here's a tiny patch for bin/mt/mt.c to allow the command "mt status" to 
print current file and block numbers, like it does in most other Unixes. 
The information was already available in struct mtget, so only two printf 
lines was needed.

I have verified that the current file number is reported as expected using 
a HP DAT72 USB tape drive.


Index: bin/mt/mt.c
===================================================================
RCS file: /cvs/src/bin/mt/mt.c,v
retrieving revision 1.36
diff -u -p -r1.36 mt.c
--- bin/mt/mt.c 12 Nov 2013 04:36:02 -0000      1.36
+++ bin/mt/mt.c 23 Jan 2014 20:42:12 -0000
@@ -281,6 +281,8 @@ status(struct mtget *bp)
        (void)putchar('\n');
        (void)printf("blocksize: %d (%d)\n", bp->mt_blksiz, bp->mt_mblksiz);
        (void)printf("density: %d (%d)\n", bp->mt_density, bp->mt_mdensity);
+       (void)printf("current file number: %d\n", bp->mt_fileno);
+       (void)printf("current block number: %d\n", bp->mt_blkno);
 }
 
 /*

Reply via email to