summaryrefslogtreecommitdiff
path: root/conf.c
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2011-07-25 23:48:23 +0200
committerJoel Rosdahl <joel@rosdahl.net>2011-07-26 22:11:45 +0200
commita36847b655b449836faf6122f6d2603a510f3227 (patch)
tree1c4b20cee58d5978d5bc373d8b16a0f55e065e05 /conf.c
parentcadd1e1793d744a2964f3a39decd05172435e834 (diff)
downloadccache-a36847b655b449836faf6122f6d2603a510f3227.tar.gz
Let k/M/G/T be 10-based suffixes and introduce 2-based Ki/Mi/Gi/Ti as well
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.c b/conf.c
index d1ac5029..5d6b802b 100644
--- a/conf.c
+++ b/conf.c
@@ -426,7 +426,7 @@ conf_create(void)
conf->hash_dir = false;
conf->log_file = x_strdup("");
conf->max_files = 0;
- conf->max_size = 1024 * 1024 * 1024;
+ conf->max_size = 1000 * 1000 * 1000;
conf->path = x_strdup("");
conf->prefix_command = x_strdup("");
conf->read_only = false;