1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Fix: Corrected typo in constant name

This commit is contained in:
Philipp Schafft 2018-08-08 10:42:16 +00:00
parent 88aa6c60c9
commit d0899fe4fc

View File

@ -83,7 +83,7 @@ static inline resourcematch_result_t match_lli(const char **string, resourcematc
errno = 0;
ret = strtoll(*string, &endptr, base);
if (endptr == *string)
return RESOURCEMATCH_MATCH;
return RESOURCEMATCH_NOMATCH;
if (errno != 0)
return RESOURCEMATCH_ERROR;