From: Arran Cudbard-Bell Date: Thu, 17 Nov 2016 17:53:31 +0000 (-0500) Subject: Extra space between cache options and colon X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e46db97b8968b1107cea21291e13fa0e8f9dc640;p=thirdparty%2Ffreeradius-server.git Extra space between cache options and colon --- diff --git a/src/modules/rlm_cache/rlm_cache.c b/src/modules/rlm_cache/rlm_cache.c index 4241d94dce2..bb529e26fcd 100644 --- a/src/modules/rlm_cache/rlm_cache.c +++ b/src/modules/rlm_cache/rlm_cache.c @@ -608,10 +608,10 @@ static rlm_rcode_t mod_cache_it(void *instance, UNUSED void *thread, REQUEST *re } RINDENT(); - RDEBUG3("merge : %s", merge ? "yes" : "no"); - RDEBUG3("insert: %s", insert ? "yes" : "no"); - RDEBUG3("expire: %s", expire ? "yes" : "no"); - RDEBUG3("ttl : %i", ttl); + RDEBUG3("merge : %s", merge ? "yes" : "no"); + RDEBUG3("insert : %s", insert ? "yes" : "no"); + RDEBUG3("expire : %s", expire ? "yes" : "no"); + RDEBUG3("ttl : %i", ttl); REXDENT(); if (cache_acquire(&handle, inst, request) < 0) return RLM_MODULE_FAIL;