Index: libs/libmythtv/diseqc.cpp
===================================================================
--- libs/libmythtv/diseqc.cpp	(revision 10424)
+++ libs/libmythtv/diseqc.cpp	(working copy)
@@ -1133,7 +1133,7 @@
 
 bool DiSEqCDevSwitch::Store(void) const
 {
-    QString subtype = SwitchTypeToString(m_type);
+    QString type = SwitchTypeToString(m_type);
     MSqlQuery query(MSqlQuery::InitCon());
 
     // insert new or update old
@@ -1157,7 +1157,7 @@
             "   description,   subtype,         switch_ports) "
             "VALUES "
             " (:PARENT,       :ORDINAL,         'switch', "
-            "  :DESC,         :SUBTYPE,         :PORTS)");
+            "  :DESC,         :TYPE,            :PORTS)");
     }
 
     if (m_parent)
@@ -1165,7 +1165,7 @@
 
     query.bindValue(":ORDINAL", m_ordinal);
     query.bindValue(":DESC",    GetDescription());
-    query.bindValue(":SUBTYPE", subtype);
+    query.bindValue(":TYPE",    type);
     query.bindValue(":PORTS",   m_num_ports);
     query.bindValue(":DEVID",   GetDeviceID());
 
