diff options
| author | liuwentan <[email protected]> | 2023-05-04 17:10:19 +0800 |
|---|---|---|
| committer | liuwentan <[email protected]> | 2023-05-06 20:27:39 +0800 |
| commit | 8a3683fa30c269aaf61298bee4315f16cea00540 (patch) | |
| tree | 78e9824b8e50e695dbd1c792f724ee410ccf9758 /include | |
| parent | 33015d5aac355773f302151b2f8a7f8986acd261 (diff) | |
group_exclude(only one hierarchical group can be referenced)v4.0.15
Diffstat (limited to 'include')
| -rw-r--r-- | include/maat.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/maat.h b/include/maat.h index 80c3e22..e689b1b 100644 --- a/include/maat.h +++ b/include/maat.h @@ -102,8 +102,11 @@ int maat_options_set_iris(struct maat_options *opts, const char *full_directory, int maat_options_set_json_file(struct maat_options *opts, const char *json_filename); -/* Indicate whether the JSON file is compressed by gzip */ -int maat_options_set_json_file_gzip_flag(struct maat_options *opts, int gzip_flag); +/** + * Indicate whether the JSON file is compressed by gzip + * flag: 1(compressed) 0(uncompressed) + * */ +int maat_options_set_json_file_gzip_flag(struct maat_options *opts, int flag); /* Specify the decryption key for the JSON file to be decrypted */ int maat_options_set_json_file_decrypt_key(struct maat_options *opts, const char *decrypt_key); |
