From: Alan T. DeKok Date: Tue, 8 Jun 2021 13:51:03 +0000 (-0400) Subject: use correct names X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b870bd93cb5e3e553671ff468f925a6798958a7f;p=thirdparty%2Ffreeradius-server.git use correct names --- diff --git a/src/modules/rlm_mschap/rlm_mschap.c b/src/modules/rlm_mschap/rlm_mschap.c index db4ddc6e62f..657c816296a 100644 --- a/src/modules/rlm_mschap/rlm_mschap.c +++ b/src/modules/rlm_mschap/rlm_mschap.c @@ -517,7 +517,7 @@ static xlat_action_t mschap_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, request_t * */ p = strchr(user_name->vp_strvalue, '.'); if (!p) { - RDEBUG2("setting NT-Domain to same as machine name"); + RDEBUG2("setting Domain-Name to same as machine name"); fr_value_box_strdup(ctx, vb, NULL, user_name->vp_strvalue + 5, user_name->vp_tainted); } else { p++; /* skip the period */ @@ -527,7 +527,7 @@ static xlat_action_t mschap_xlat(TALLOC_CTX *ctx, fr_dcursor_t *out, request_t * } else { p = strchr(user_name->vp_strvalue, '\\'); if (!p) { - REDEBUG("No NT-Domain was found in the User-Name"); + REDEBUG("No domain name was found in the User-Name"); talloc_free(vb); return XLAT_ACTION_FAIL; }