summaryrefslogtreecommitdiffstats
path: root/doc/man7
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2023-01-11 01:39:02 +0100
committerPauli <pauli@openssl.org>2023-01-20 00:15:53 +0100
commit9866200bbe8eb65628f3f3e6eb290c48efb5a8ac (patch)
tree23f19cce58faa89feed17e05ce6feeebf7bae1f1 /doc/man7
parentQUIC Test Server: Minor fixups (diff)
downloadopenssl-9866200bbe8eb65628f3f3e6eb290c48efb5a8ac.tar.xz
openssl-9866200bbe8eb65628f3f3e6eb290c48efb5a8ac.zip
Correct property EBNF for unquoted strings
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/20023)
Diffstat (limited to 'doc/man7')
-rw-r--r--doc/man7/property.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man7/property.pod b/doc/man7/property.pod
index 109336ba47..3d6f269d7f 100644
--- a/doc/man7/property.pod
+++ b/doc/man7/property.pod
@@ -154,9 +154,9 @@ The lexical syntax in EBNF is given by:
Value ::= NumberLiteral | StringLiteral
StringLiteral ::= QuotedString | UnquotedString
QuotedString ::= '"' [^"]* '"' | "'" [^']* "'"
- UnquotedString ::= [^{space},]+
+ UnquotedString ::= [A-Za-z] [^{space},]+
NumberLiteral ::= '0' ( [0-7]* | 'x' [0-9A-Fa-f]+ ) | '-'? [1-9] [0-9]+
- PropertyName ::= [A-Z] [A-Z0-9_]* ( '.' [A-Z] [A-Z0-9_]* )*
+ PropertyName ::= [A-Za-z] [A-Za-z0-9_]* ( '.' [A-Za-z] [A-Za-z0-9_]* )*
=head1 HISTORY