if there's no output file, the output goes to STDOUT, not to
the input file.
Fixing this message means that the poor reader won't wonder WTF
is going on with the input and output being the same.
if (!fr_pair_validate(failed, &filter_vps, &request->reply_pairs)) {
fr_pair_validate_debug(request, failed);
fr_perror("Output file %s does not match attributes in filter %s",
- output_file ? output_file : input_file, filter_file);
+ output_file ? output_file : "-", filter_file);
ret = EXIT_FAILURE;
goto cleanup;
}