From dba4e4e287a3da66508710e9190836e9eee5e4ac Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 24 Jun 2023 21:30:38 -0500 Subject: [PATCH] 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. --- level_3/fss_identify/c/private-identify.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; -- 1.8.3.1