From: Kevin Day Date: Sun, 25 Jun 2023 02:30:38 +0000 (-0500) Subject: Cleanup: Fix documentation comments for fss_identify_process_name_compare(). X-Git-Tag: 0.6.6~13 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=dba4e4e287a3da66508710e9190836e9eee5e4ac;p=fll Cleanup: Fix documentation comments for fss_identify_process_name_compare(). The wrong return values are being reported. The fl_string_dynamic_partial_compare_string() function is missing. --- diff --git a/level_3/fss_identify/c/private-identify.h b/level_3/fss_identify/c/private-identify.h index 0aff68d..231fd76 100644 --- a/level_3/fss_identify/c/private-identify.h +++ b/level_3/fss_identify/c/private-identify.h @@ -80,14 +80,16 @@ extern "C" { * 2 = Compare against the full name (such as "fss-0001" in "fss-0001"). * * @return - * F_true on match. - * F_false on no match. + * F_equal_to on match. + * F_equal_to_not on no match. * * Errors (with error bit) from: fl_conversion_dynamic_partial_to_hexidecimal_unsigned(). * Errors (with error bit) from: fl_string_dynamic_compare_string(). + * Errors (with error bit) from: fl_string_dynamic_partial_compare_string(). * * @see fl_conversion_dynamic_partial_to_hexidecimal_unsigned() * @see fl_string_dynamic_compare_string() + * @see fl_string_dynamic_partial_compare_string() */ #ifndef _di_fss_identify_process_name_compare_ extern f_status_t fss_identify_process_name_compare(fss_identify_data_t * const data, const f_fll_id_t id, const uint8_t mode) F_attribute_visibility_internal_d;