]> Kevux Git Server - fll/commitdiff
Cleanup: Fix documentation comments for fss_identify_process_name_compare().
authorKevin Day <kevin@kevux.org>
Sun, 25 Jun 2023 02:30:38 +0000 (21:30 -0500)
committerKevin Day <kevin@kevux.org>
Sun, 25 Jun 2023 02:30:38 +0000 (21:30 -0500)
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

index 0aff68d8bd4b0bd22ab3802be81278d7c061c44a..231fd768c40824b28fe3cfba7021c5d1501fe926 100644 (file)
@@ -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;