From: Catalina Pineros Date: Thu, 5 Mar 2026 20:42:28 +0000 (-0500) Subject: typo X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=782d1a5004a352b4894f61ded0da5d621663ab2b;p=thirdparty%2Ffreeradius-server.git typo (rlm_python: fix wrong variable 'index' in py_freeradius_build_parents error message 341) --- diff --git a/src/modules/rlm_python/rlm_python.c b/src/modules/rlm_python/rlm_python.c index 820bf1f1160..ce8be5efca7 100644 --- a/src/modules/rlm_python/rlm_python.c +++ b/src/modules/rlm_python/rlm_python.c @@ -637,7 +637,7 @@ static fr_pair_t *py_freeradius_build_parents(PyObject *obj) if (obj_pair->idx > 0) { unsigned int count = fr_pair_count_by_da(&parent->vp_group, obj_pair->da); if (count < obj_pair->idx) { - PyErr_Format(PyExc_AttributeError, "Attempt to set instance %d when only %d exist", index, count); + PyErr_Format(PyExc_AttributeError, "Attempt to set instance %d when only %d exist", obj_pair->idx, count); return NULL; } }