From: Kathleen King Date: Thu, 3 Jul 2014 00:37:23 +0000 (-0700) Subject: Fixed parameter name of variable in X-Git-Tag: v1.5.13~53^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35755d37d5dd47c2f8470ca9a294b55f124ee1e7;p=thirdparty%2Ffreeswitch.git Fixed parameter name of variable in switch_regex_match_partial. #doxygen --- diff --git a/src/include/switch_regex.h b/src/include/switch_regex.h index 05971b607d..9f3f1d00c6 100644 --- a/src/include/switch_regex.h +++ b/src/include/switch_regex.h @@ -65,7 +65,7 @@ SWITCH_DECLARE(switch_status_t) switch_regex_match(const char *target, const cha \brief Function to evaluate an expression against a string \param target The string to find a match in \param expression The regular expression to run against the string - \param partial If non-zero returns SUCCESS if the target is a partial match, on successful return, this is set to non-zero if the match was partial and zero if it was a full match + \param partial_match If non-zero returns SUCCESS if the target is a partial match, on successful return, this is set to non-zero if the match was partial and zero if it was a full match \return Boolean if a match was found or not */ SWITCH_DECLARE(switch_status_t) switch_regex_match_partial(const char *target, const char *expression, int *partial_match);