]> xenbits.xensource.com Git - people/vhanquez/xen.git/commitdiff
oxenstored: Fix spelling of "persistent" config variable
authorIan Jackson <Ian.Jackson@eu.citrix.com>
Mon, 20 Feb 2012 18:29:31 +0000 (18:29 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Mon, 20 Feb 2012 18:29:31 +0000 (18:29 +0000)
Change "persistant" to "persistent", in the code and the
example/default config.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
tools/ocaml/xenstored/oxenstored.conf
tools/ocaml/xenstored/xenstored.ml

index 9616d32036883ec1ef94f8fac7a6a9152726791a..13ee770426873ef34e9440db520cc3dc8c577d22 100644 (file)
@@ -20,7 +20,7 @@ quota-maxwatch = 100
 quota-transaction = 10
 
 # Activate filed base backend
-persistant = false
+persistent = false
 
 # Xenstored logs
 # xenstored-log-file = /var/log/xenstored.log
index fdea41a3bbcdba8e87d22080f3f7f558ba29b5ff..64cc106461d7274c70c6be5b791edf3ce900d463 100644 (file)
@@ -86,7 +86,7 @@ let parse_config filename =
                ("quota-maxentity", Config.Set_int Quota.maxent);
                ("quota-maxsize", Config.Set_int Quota.maxsize);
                ("test-eagain", Config.Set_bool Transaction.test_eagain);
-               ("persistant", Config.Set_bool Disk.enable);
+               ("persistent", Config.Set_bool Disk.enable);
                ("xenstored-log-file", Config.Set_string Logging.xenstored_log_file);
                ("xenstored-log-level", Config.String
                        (fun s -> Logging.xenstored_log_level := Logging.level_of_string s));