]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
use correct names
authorAlan T. DeKok <aland@freeradius.org>
Tue, 8 Jun 2021 13:51:03 +0000 (09:51 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 8 Jun 2021 13:51:03 +0000 (09:51 -0400)
src/modules/rlm_mschap/rlm_mschap.c

index db4ddc6e62f19de49f7acef1f7cc0eea45b6395f..657c816296adc9f764cd62b44bb7a1dc79f54dd6 100644 (file)
@@ -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;
                        }