From: Alan T. DeKok Date: Tue, 26 Dec 2023 15:33:03 +0000 (-0500) Subject: don't use Tmp-* in examples X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29032b577225ef240dc71f247bf2ad13d70889ae;p=thirdparty%2Ffreeradius-server.git don't use Tmp-* in examples --- diff --git a/doc/antora/modules/raddb/pages/mods-available/csv.adoc b/doc/antora/modules/raddb/pages/mods-available/csv.adoc index b1a2800ff06..27380b12a12 100644 --- a/doc/antora/modules/raddb/pages/mods-available/csv.adoc +++ b/doc/antora/modules/raddb/pages/mods-available/csv.adoc @@ -172,7 +172,7 @@ look like this: map csv &User-Name { &reply.Reply-Message := 'color' -&Tmp-Integer-0 := 'count' +&my-integer := 'count' } This map does the same operations as the key / update @@ -200,7 +200,7 @@ csv { key = &User-Name update reply { &Reply-Message := 'color' - &Foo := 'count' + &my-integer := 'count' } } ``` diff --git a/raddb/mods-available/csv b/raddb/mods-available/csv index 6b65d26e89b..362fda22ed8 100644 --- a/raddb/mods-available/csv +++ b/raddb/mods-available/csv @@ -176,7 +176,7 @@ csv { # update reply { &Reply-Message := 'color' - &Foo := 'count' + &my-integer := 'count' } # @@ -190,7 +190,7 @@ csv { # # map csv &User-Name { # &reply.Reply-Message := 'color' - # &Tmp-Integer-0 := 'count' + # &my-integer := 'count' # } # # This map does the same operations as the key / update