]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
attribute 999 is invalid for RADIUS
authorAlan T. DeKok <aland@freeradius.org>
Fri, 8 May 2020 17:27:54 +0000 (13:27 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 8 May 2020 17:27:54 +0000 (13:27 -0400)
there isn't much point in creating unknown attributes which
can't be sent on the wire.

src/tests/keywords/update-unknown

index a463bb57b611421683694e75b790fa98781f3bbf..59aa168880e9ea52653d02102df9514bb48f5cbe 100644 (file)
@@ -17,7 +17,7 @@ update {
 update {
        &Attr-26.6139.1 = 0x00000013
        &Attr-26.9.42 = 0x0001020304
-       &Attr-999 = 0x00
+       &Attr-255 = 0x00
 }
 
 if (&Attr-26.6139.1 != 0x00000013) {
@@ -28,7 +28,7 @@ if (&Attr-26.9.42 != 0x0001020304) {
        test_fail
 }
 
-if (&Attr-999 != 0x00) {
+if (&Attr-255 != 0x00) {
        test_fail
 }