]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Specify instances explicitly
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 25 Jan 2018 19:06:45 +0000 (12:06 -0700)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 25 Jan 2018 19:12:29 +0000 (12:12 -0700)
src/tests/modules/cache_rbtree/module.conf

index c7a7ddd010496945557f069b81ec2260b157f2d3..3da68b8898011112a20364491c9efb1963b132c7 100644 (file)
@@ -6,8 +6,8 @@ cache {
        ttl = 2
 
        update {
-               &request:Tmp-String-1 := &control:Tmp-String-1
-               &request:Tmp-Integer-0 := &control:Tmp-Integer-0
+               &request:Tmp-String-1 := &control:Tmp-String-1[0]
+               &request:Tmp-Integer-0 := &control:Tmp-Integer-0[0]
                &control: += &reply:
        }
 
@@ -68,7 +68,7 @@ cache cache_bin_key_octets {
        ttl = 2
 
        update {
-               &Tmp-String-1 := &Tmp-String-1
+               &Tmp-String-1 := &Tmp-String-1[0]
        }
 }
 
@@ -79,6 +79,6 @@ cache cache_bin_key_ipaddr {
        ttl = 2
 
        update {
-               &Tmp-String-1 := &Tmp-String-1
+               &Tmp-String-1 := &Tmp-String-1[0]
        }
 }