summaryrefslogtreecommitdiff
path: root/doc/man7/property.pod
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-06-03 08:06:15 +1000
committerPauli <paul.dale@oracle.com>2019-06-03 08:30:49 +1000
commit915bf45ee32826ed9eb612e4f82034a138dfeb41 (patch)
tree26a331fcf31a4b66c340e644c03dce3014e3567f /doc/man7/property.pod
parentaad07a2f26b15509598f9941b72270ea4f3f7cdd (diff)
downloadopenssl-new-915bf45ee32826ed9eb612e4f82034a138dfeb41.tar.gz
Fix a typo in the property grammar that creates an ambiguous parse.
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9065)
Diffstat (limited to 'doc/man7/property.pod')
-rw-r--r--doc/man7/property.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man7/property.pod b/doc/man7/property.pod
index 1f8ee541b1..88f5400dbc 100644
--- a/doc/man7/property.pod
+++ b/doc/man7/property.pod
@@ -94,7 +94,7 @@ The lexical syntax in EBNF is given by:
Definition ::= PropertyName ( '=' Value )?
( ',' PropertyName ( '=' Value )? )*
Query ::= PropertyQuery ( ',' PropertyQuery )*
- PropertyQuery ::= '-'? PropertyName
+ PropertyQuery ::= '-' PropertyName
| '?'? ( PropertyName (( '=' | '!=' ) Value)?)
Value ::= NumberLiteral | StringLiteral
StringLiteral ::= QuotedString | UnquotedString