summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-08-22 12:39:00 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-08-22 12:39:00 +0200
commit9abbfc63eb9bc0803e3a408f7785ab342c4f0ece (patch)
tree94ea70c80b3817b9a2d135d7ac21694a8cbd56b8 /utils
parent74578b270227c984499dc37c4b436382f6cced1f (diff)
downloadeurephia-9abbfc63eb9bc0803e3a408f7785ab342c4f0ece.tar.gz
eurephia-9abbfc63eb9bc0803e3a408f7785ab342c4f0ece.tar.xz
eurephia-9abbfc63eb9bc0803e3a408f7785ab342c4f0ece.zip
Changed the short argument for --hash-threshold-max
Diffstat (limited to 'utils')
-rw-r--r--utils/eurephia_init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/eurephia_init.c b/utils/eurephia_init.c
index ebcf9c6..c342617 100644
--- a/utils/eurephia_init.c
+++ b/utils/eurephia_init.c
@@ -69,7 +69,7 @@ void print_help(char *fprg) {
" -l | --log <filename> : Log file for debugging\n"
" -L | --log-level <log level> : Sets the log level\n"
" -N | --hash-threshold-min <ms> : Benchmarking parameter, see below. Default 95ms\n"
- " -N | --hash-threshold-max <ms> : Benchmarking parameter, see below. Default 200ms\n"
+ " -M | --hash-threshold-max <ms> : Benchmarking parameter, see below. Default 200ms\n"
" -D | --database-driver <path> : Full path to the database driver\n"
" -d | --database-args <args> : Required database arguments for the driver\n\n");
@@ -438,7 +438,7 @@ int main(int argc, char **argv) {
{"--log", "-l", 1},
{"--log-level", "-L", 1},
{"--hash-threshold-min", "-N", 1},
- {"--hash-threshold-max", "-X", 1},
+ {"--hash-threshold-max", "-M", 1},
{"--database-driver", "-D", 1},
{"--database-args", "-d", 1},
{NULL, NULL, 0}
@@ -475,7 +475,7 @@ int main(int argc, char **argv) {
hash_thr_min = atoi_nullsafe(optargs[0]);
break;
- case 'X':
+ case 'M':
hash_thr_max = atoi_nullsafe(optargs[0]);
break;