Update of /cvsroot/blob/blob/src/blob
In directory sc8-pr-cvs1:/tmp/cvs-serv20623
Modified Files:
partition.c
Log Message:
fixup_ptable: quietly skip part entries marked as invalid.
Index: partition.c
===================================================================
RCS file: /cvsroot/blob/blob/src/blob/partition.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- partition.c 27 Jan 2003 20:45:56 -0000 1.7
+++ partition.c 27 Jan 2003 23:23:49 -0000 1.8
@@ -278,6 +278,9 @@
case BLOB_PART_LAST_MAGIC:
return 0;
+ case BLOB_PART_INVALID_MAGIC:
+ break;
+
case BLOB_PART_VALID_MAGIC:
dprintf("part @ 0x%p\n", t);
|