Add support for query key extraction
[com/gs-lite.git] / src / ftacmp / field_list.h
index 9b0e1d6..d2a7e0f 100644 (file)
@@ -29,10 +29,11 @@ public:
        field_list(xml_t *x);
 
        int verify_field(std::string name, std::string type, std::string &err){
-               if(fields.count(name) == 0){
-                       err += "\tCould not find field "+name+" in the field list\n";
-                       return 1;
-               }
+// Perhaps re-enable this at some point but for now its an annoyance.
+//             if(fields.count(name) == 0){
+//                     err += "\tCould not find field "+name+" in the field list\n";
+//                     return 1;
+//             }
                if(fields[name] == "")
                        return 0;
                if(type_verifier[fields[name]] != type_verifier[type]){