From: Terry Burton Date: Wed, 31 Jul 2019 19:35:20 +0000 (+0100) Subject: docs: Clearer examples X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8456f62e613bfeeb134bb81b3bebf227518af60;p=thirdparty%2Ffreeradius-server.git docs: Clearer examples The previous use of attribute "Filter-Id" may confuse the reader given that the next section refers to "filtering" operators. Give an example of clobbering an attribute. --- diff --git a/doc/unlang/update.adoc b/doc/unlang/update.adoc index f377984857c..3f124d2db0a 100644 --- a/doc/unlang/update.adoc +++ b/doc/unlang/update.adoc @@ -138,7 +138,15 @@ of the same name are already present in the list. [source,unlang] ---- update reply { - &Filter-Id += "filter" + &Session-timeout := 86400 +} +---- + +.Example +[source,unlang] +---- +update reply { + &Reply-Message += "Rejected: Also, realm does not end with ac.uk" } ----