Skip to content

Commit

Permalink
doc: make PSK (Pre-Shared-Key) a known abbrevation
Browse files Browse the repository at this point in the history
With this change, configuration directives containing "TlsPsk"
are writen as "TLS PSK" instead of "TLS Psk".
  • Loading branch information
joergsteffens committed Oct 31, 2018
1 parent 12a39ff commit 9bd6765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/manuals/scripts/generate-resoure-descriptions.py
Expand Up @@ -152,7 +152,7 @@ def convertCamelCase2Spaces( self, valueCC ):
result=[]
for token in s1.split(' '):
u = token.upper()
if u in [ "ACL", "CA", "CN", "DB", "DH", "FD", "LMDB", "NDMP", "SD", "SSL", "TLS", "VSS" ]:
if u in [ "ACL", "CA", "CN", "DB", "DH", "FD", "LMDB", "NDMP", "PSK", "SD", "SSL", "TLS", "VSS" ]:
token=u
result.append(token)
return " ".join( result )
Expand Down

0 comments on commit 9bd6765

Please sign in to comment.