Fixed an off-by-one comparison against MAX_BASIS_DIRS.

This commit is contained in:
Wayne Davison
2005-01-15 21:23:04 +00:00
parent 2be2fb3ed3
commit 3b26bba0c4

View File

@@ -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);