Commit 3b26bba0 authored by Wayne Davison's avatar Wayne Davison

Fixed an off-by-one comparison against MAX_BASIS_DIRS.

parent 2be2fb3e
...@@ -738,7 +738,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) ...@@ -738,7 +738,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain)
compare_dest = 1; compare_dest = 1;
dest_option = "--compare-dest"; dest_option = "--compare-dest";
set_dest_dir: set_dest_dir:
if (basis_dir_cnt >= MAX_BASIS_DIRS-1) { if (basis_dir_cnt >= MAX_BASIS_DIRS) {
snprintf(err_buf, sizeof err_buf, snprintf(err_buf, sizeof err_buf,
"ERROR: at most %d %s args may be specified\n", "ERROR: at most %d %s args may be specified\n",
MAX_BASIS_DIRS, dest_option); MAX_BASIS_DIRS, dest_option);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment