From: Alan T. DeKok Date: Fri, 10 Apr 2009 14:17:48 +0000 (+0200) Subject: Fixed double quote issue X-Git-Tag: release_2_1_7~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d3622c8b266bf833168c1a91ccacebf448d57ce;p=thirdparty%2Ffreeradius-server.git Fixed double quote issue --- diff --git a/man/man5/unlang.5 b/man/man5/unlang.5 index 4c1da751aa4..b3336867f69 100644 --- a/man/man5/unlang.5 +++ b/man/man5/unlang.5 @@ -313,7 +313,7 @@ stand-alone condition, in which case they are evaluated as described in "Simple conditions", above. They can also appear (with some exceptions noted below) on the left-hand or on the right-hand side of a comparison. -.IP Numbers +.IP numbers Numbers are composed of decimal digits. Floating point, hex, and octal numbers are not supported. The maximum value for a number is machine-dependent, but is usually 32-bits, including one bit for a @@ -342,14 +342,14 @@ as seen in the examples below. if (Service-Type == Login-User) { .DE .RE -.IP "strings" +.IP """strings""" .RS Double-quoted strings are expanded by inserting the value of any variables (see VARIABLES, below) before being evaluated. If the result is a number it is evaluated in a numerical context. String length is limited by line-length, usually about 8000 -characters. A double quote character (") can be used in a string via +characters. A double quote character can be used in a string via the normal back-slash escaping method. ("like \\"this\\" !") .RE .IP 'strings'