Index: trunk/FACT++/src/fits2sql.cc
===================================================================
--- trunk/FACT++/src/fits2sql.cc	(revision 19134)
+++ trunk/FACT++/src/fits2sql.cc	(revision 19135)
@@ -4,4 +4,5 @@
 #include "Database.h"
 
+#include "tools.h"
 #include "Time.h"
 #include "Configuration.h"
@@ -63,5 +64,5 @@
         ("engine",         var<string>(""),           "Database engine to be used when a new table is created")
         ("row-format",     var<string>(""),           "Defines the ROW_FORMAT keyword for table creation")
-        ("duplicate",      vars<string>(""),          "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
+        ("duplicate",      vars<string>(),            "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
         ("ignore-errors",  po_switch(),               "Adds the IGNORE keyword to the INSERT query (turns errors into warnings, ignores rows with errors)")
         ;
@@ -312,5 +313,5 @@
     const vector<string> primary = conf.Vec<string>("primary");
 
-    const vactor<string> duplicate = conf.Vec<string>("duplicate");
+    const vector<string> duplicate = conf.Vec<string>("duplicate");
     const vector<string> notsigned = conf.Vec<string>("unsigned");
 
Index: trunk/FACT++/src/root2sql.cc
===================================================================
--- trunk/FACT++/src/root2sql.cc	(revision 19134)
+++ trunk/FACT++/src/root2sql.cc	(revision 19135)
@@ -4,4 +4,5 @@
 #include "Database.h"
 
+#include "tools.h"
 #include "Time.h"
 #include "Configuration.h"
@@ -66,5 +67,5 @@
         ("engine",         var<string>(""),           "Database engine to be used when a new table is created")
         ("row-format",     var<string>(""),           "Defines the ROW_FORMAT keyword for table creation")
-        ("duplicate",      vars<string>(""),          "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
+        ("duplicate",      vars<string>(),            "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
         ("ignore-errors",  po_switch(),               "Adds the IGNORE keyword to the INSERT query (turns errors into warnings, ignores rows with errors)")
         ;
