1
0
의 미러 https://git.tukaani.org/xz.git synced 2025-05-11 08:46:37 +00:00

xz: Flip the return value of suffix_is_set to match the documentation.

Also edit style to match the existing coding style in the project.
This commit is contained in:
Lasse Collin 2023-01-24 00:05:38 +02:00 committed by Jia Tan
부모 cc5aa9ab13
커밋 683a3c7e2f
3개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@ -726,9 +726,9 @@ args_parse(args_info *args, int argc, char **argv)
// If raw format is used and a custom suffix is not provided,
// then only stdout mode can be used when compressing or decompressing.
if (opt_format == FORMAT_RAW && suffix_is_set() && !opt_stdout &&
(opt_mode == MODE_COMPRESS ||
opt_mode == MODE_DECOMPRESS))
if (opt_format == FORMAT_RAW && !suffix_is_set() && !opt_stdout
&& (opt_mode == MODE_COMPRESS
|| opt_mode == MODE_DECOMPRESS))
message_fatal(_("With --format=raw, --suffix=.SUF is "
"required unless writing to stdout"));

파일 보기

@ -397,5 +397,5 @@ suffix_set(const char *suffix)
extern bool
suffix_is_set(void)
{
return custom_suffix == NULL;
return custom_suffix != NULL;
}

파일 보기

@ -27,6 +27,7 @@ extern char *suffix_get_dest_name(const char *src_name);
/// and forgotten.
extern void suffix_set(const char *suffix);
/// \brief Check if a custom suffix has been set
///
/// Returns true if the internal tracking of the suffix string has been set