aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/ocaml/xenstored/oxenstored.conf2
-rw-r--r--tools/ocaml/xenstored/xenstored.ml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/ocaml/xenstored/oxenstored.conf b/tools/ocaml/xenstored/oxenstored.conf
index 9616d32036..13ee770426 100644
--- a/tools/ocaml/xenstored/oxenstored.conf
+++ b/tools/ocaml/xenstored/oxenstored.conf
@@ -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
diff --git a/tools/ocaml/xenstored/xenstored.ml b/tools/ocaml/xenstored/xenstored.ml
index fdea41a3bb..64cc106461 100644
--- a/tools/ocaml/xenstored/xenstored.ml
+++ b/tools/ocaml/xenstored/xenstored.ml
@@ -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));