aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ocaml
diff options
context:
space:
mode:
authorIan Jackson <Ian.Jackson@eu.citrix.com>2012-02-20 18:29:31 +0000
committerIan Jackson <Ian.Jackson@eu.citrix.com>2012-02-20 18:29:31 +0000
commit8ae741f167efaa6d7567af1c6358f2f2467d6058 (patch)
tree8c376ae9281a850d016ce06ef8dfc6aab8f5af89 /tools/ocaml
parent3a8a0f0e104895b41fd1e662e81fbd24e133cedb (diff)
downloadxen-8ae741f167efaa6d7567af1c6358f2f2467d6058.tar.gz
xen-8ae741f167efaa6d7567af1c6358f2f2467d6058.tar.bz2
xen-8ae741f167efaa6d7567af1c6358f2f2467d6058.zip
oxenstored: Fix spelling of "persistent" config variable
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>
Diffstat (limited to 'tools/ocaml')
-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));