<div dir="ltr"><div>Actually you were spot on with your feedback. I also checked with e2fsprogs, util-linux and busy box blkid and this is the most consistent ordering of output for SEC_TYPE. <br></div><div><br></div><div>- Eric<br>---<br> tests/blkid.test   | 2 +-<br> toys/other/blkid.c | 2 +-<br> 2 files changed, 2 insertions(+), 2 deletions(-)<br><br>diff --git a/tests/blkid.test b/tests/blkid.test<br>index 4c385dcb..7e625492 100755<br>--- a/tests/blkid.test<br>+++ b/tests/blkid.test<br>@@ -29,7 +29,7 @@ testing "f2fs" "BLKID f2fs" \<br>   'temp.img: LABEL="myf2fs" UUID="b53d3619-c204-4c0b-8504-36363578491c" TYPE="f2fs"\n' \<br>   "" ""<br> testing "iso" "BLKID iso" \<br>-  'temp.img: SEC_TYPE="msdos" LABEL="MYISO" UUID="1970-01-02-12-55-42-00" TYPE="iso9660"\n' \<br>+  'temp.img: LABEL="MYISO" UUID="1970-01-02-12-55-42-00" TYPE="iso9660"\n' \<br>   "" ""<br> testing "msdos" "BLKID msdos" \<br>   'temp.img: SEC_TYPE="msdos" LABEL="mymsdos" UUID="6E1E-0851" TYPE="vfat"\n' \<br>diff --git a/toys/other/blkid.c b/toys/other/blkid.c<br>index 726ae754..bed20b2c 100644<br>--- a/toys/other/blkid.c<br>+++ b/toys/other/blkid.c<br>@@ -168,7 +168,7 @@ static void do_blkid(int fd, char *name)<br>   if (!FLAG(U) && len) {<br>     s = toybuf+fstypes[i].label_off-off;<br>     if (!strcmp(type, "vfat") || !strcmp(type, "iso9660")) {<br>-      show_tag("SEC_TYPE", "msdos");<br>+      if (*type=='v') show_tag("SEC_TYPE", "msdos");<br>       while (len && s[len-1]==' ') len--;<br>       if (strstart(&s, "NO NAME")) len=0;<br>     }<br>-- <br>2.39.1<br></div></div>