diff options
author | Stef Walter <stef@memberwebs.com> | 2006-12-09 02:38:42 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-12-09 02:38:42 +0000 |
commit | 2ba8cd814f0de8bc8cb18d5add9fa35c88fb9330 (patch) | |
tree | 6e67a2deeaf99fc2b1269bc932583e9f67a2a9e6 /tools | |
parent | 9baf328de072e798a59d4b4d9a84ac6fd43ec6d7 (diff) |
- Fix bug where rrdbot-create ignored '-c' argument [benj]
Diffstat (limited to 'tools')
-rw-r--r-- | tools/rrdbot-create.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rrdbot-create.c b/tools/rrdbot-create.c index aa2ae0b..22dbaa4 100644 --- a/tools/rrdbot-create.c +++ b/tools/rrdbot-create.c @@ -839,7 +839,7 @@ main(int argc, char* argv[]) /* Config directory */ case 'c': - confdir = DEFAULT_CONFIG; + confdir = optarg; break; /* Only print commands */ |