From: Alan T. DeKok Date: Thu, 14 Apr 2022 12:05:19 +0000 (-0400) Subject: typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d217e590eb9f49269a35e7adfee9187e2cbbf716;p=thirdparty%2Ffreeradius-server.git typo --- diff --git a/src/lib/tls/engine.c b/src/lib/tls/engine.c index 4ed82324e93..239769ff8bd 100644 --- a/src/lib/tls/engine.c +++ b/src/lib/tls/engine.c @@ -72,7 +72,7 @@ static int8_t tls_engine_cmp(void const *one, void const *two) { tls_engine_t const *a = talloc_get_type_abort_const(one, tls_engine_t); tls_engine_t const *b = talloc_get_type_abort_const(two, tls_engine_t); - uint8_t ret; + int8_t ret; ret = CMP(strcmp(a->id, b->id), 0); if (ret != 0) return ret;