From: Alan T. DeKok Date: Tue, 7 Feb 2012 19:54:11 +0000 (+0100) Subject: Fix typos X-Git-Tag: release_2_2_0~179 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e477ecb01a17c944cfeb816b80fda86f2eddb090;p=thirdparty%2Ffreeradius-server.git Fix typos --- diff --git a/src/modules/rlm_sqlippool/rlm_sqlippool.c b/src/modules/rlm_sqlippool/rlm_sqlippool.c index e3ddd9aebcc..7d2ae16cb4e 100644 --- a/src/modules/rlm_sqlippool/rlm_sqlippool.c +++ b/src/modules/rlm_sqlippool/rlm_sqlippool.c @@ -444,13 +444,13 @@ static int sqlippool_instantiate(CONF_SECTION * conf, void ** instance) } if (IS_EMPTY(data->allocate_find)) { - radlog(L_ERR, "rlm_sqlippool: the 'allocate_find' statement must be set."); + radlog(L_ERR, "rlm_sqlippool: the 'allocate-find' statement must be set."); sqlippool_detach(data); return -1; } if (IS_EMPTY(data->allocate_update)) { - radlog(L_ERR, "rlm_sqlippool: the 'allocate_update' statement must be set."); + radlog(L_ERR, "rlm_sqlippool: the 'allocate-update' statement must be set."); sqlippool_detach(data); return -1; }