]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fixed parameter name of variable in
authorKathleen King <kathleen.king@quentustech.com>
Thu, 3 Jul 2014 00:37:23 +0000 (17:37 -0700)
committerKathleen King <kathleen.king@quentustech.com>
Thu, 3 Jul 2014 00:46:55 +0000 (17:46 -0700)
switch_regex_match_partial. #doxygen

src/include/switch_regex.h

index 05971b607d8f336e78d7dc256640d59df623314f..9f3f1d00c6efadd0d3d605d6cacfad29eee70a96 100644 (file)
@@ -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);