aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index b78b007..40c3e82 100644
--- a/main.go
+++ b/main.go
@@ -39,7 +39,7 @@ Help:
Options:
- -d, --directory: The ct-sans working directory (Default: "ct-sans")
+ -d, --directory: The ct-sans working directory (Default: "data")
-w, --workers: Number of parallel download workers per log (Default: 2)
-k, --batch-disk: Certificate batch size before persisting (Default: 16384)
-q, --batch-req: Certificate batch size to use in request (Default: 512)
@@ -76,7 +76,7 @@ func main() {
// Define command-line options
fs := ctflag.NewFlagSet()
opts := options{}
- ctflag.String(&fs, &opts.Directory, "directory", "d", "ct-sans")
+ ctflag.String(&fs, &opts.Directory, "directory", "d", "data")
ctflag.Uint64(&fs, &opts.WorkersPerLog, "workers", "w", 2)
ctflag.Uint64(&fs, &opts.PersistSize, "batch-disk", "k", 16384)
ctflag.Uint64(&fs, &opts.BatchSize, "batch-req", "q", 512)