From: Arran Cudbard-Bell Date: Fri, 1 Jul 2022 02:01:55 +0000 (-0500) Subject: Typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a79735aa97efb0092b42194cc7642503dd0a593b;p=thirdparty%2Ffreeradius-server.git Typo --- diff --git a/src/lib/server/cf_util.c b/src/lib/server/cf_util.c index 2e3cb00ac21..36e5fec20d0 100644 --- a/src/lib/server/cf_util.c +++ b/src/lib/server/cf_util.c @@ -1036,7 +1036,7 @@ char const *cf_section_value_find(CONF_SECTION const *cs, char const *attr) * - 0 if cs matches the identifiers. * - <0 if cs is less than the identifiers. */ -int8_t *cf_section_name_cmp(CONF_SECTION const *cs, char const *name1, char const *name2) +int8_t cf_section_name_cmp(CONF_SECTION const *cs, char const *name1, char const *name2) { int8_t ret; diff --git a/src/lib/server/cf_util.h b/src/lib/server/cf_util.h index c0ab349b2d2..476b0f2716f 100644 --- a/src/lib/server/cf_util.h +++ b/src/lib/server/cf_util.h @@ -157,7 +157,7 @@ CONF_SECTION *cf_section_has_parent(CONF_SECTION const *cs, char const *cf_section_value_find(CONF_SECTION const *, char const *attr); -int8_t *cf_section_name_cmp(CONF_SECTION const *cs, char const *name1, char const *name2); +int8_t cf_section_name_cmp(CONF_SECTION const *cs, char const *name1, char const *name2); /** @hidecallergraph */ char const *cf_section_name1(CONF_SECTION const *cs); /** @hidecallergraph */