This is uneeded for basic and basic list, but extended supports multiple content parts.
When -t is passed while doing a selection using -c, report the total number of content parts instead of the total number found.
}
if (data->parameters[fss_extended_read_parameter_count].result == f_console_result_additional) {
+ if (data->parameters[fss_extended_read_parameter_total].result == f_console_result_found) {
+ total = data->contents.array[current].used;
+ }
+
if (found == target) {
break;
} else {
}
} // for
- if (data->parameters[fss_extended_read_parameter_total].result == f_console_result_found && data->parameters[fss_extended_read_parameter_count].result == f_console_result_none) {
+ if (data->parameters[fss_extended_read_parameter_total].result == f_console_result_found) {
fprintf(f_standard_output, f_string_length_printf "\n", total);
}
} else {