A few minor bug fixes; backup function now accepts dd output of MBR,
main header, and main partition table, as well as gdisk-generated
backups.
diff --git a/parttypes.cc b/parttypes.cc
index 850b1e3..1bda724 100644
--- a/parttypes.cc
+++ b/parttypes.cc
@@ -104,7 +104,7 @@
    // FreeBSD partition types....
    // Note: Rather than extract FreeBSD disklabel data, convert FreeBSD
    // partitions in-place, and let FreeBSD sort out the details....
-   AddType(0xa500, "516E7CB4-6ECF-11D6-8FF8-00022D09712B", "FreeBSD Disklabel");
+   AddType(0xa500, "516E7CB4-6ECF-11D6-8FF8-00022D09712B", "FreeBSD disklabel");
    AddType(0xa501, "83BD6B9D-7F41-11DC-BE0B-001560B84F0F", "FreeBSD boot");
    AddType(0xa502, "516E7CB5-6ECF-11D6-8FF8-00022D09712B", "FreeBSD swap");
    AddType(0xa503, "516E7CB6-6ECF-11D6-8FF8-00022D09712B", "FreeBSD UFS");
@@ -191,7 +191,7 @@
 } // GUID::AddType(const char* variant)
 
 // Assign a GUID based on my custom 2-byte (16-bit) MBR hex ID variant
-GUIDData & PartType::operator=(uint16_t ID) {
+PartType & PartType::operator=(uint16_t ID) {
    AType* theItem = allTypes;
    int found = 0;