Oops misses the patch to attach. Attaching the change as patch
On Sat, Jan 25, 2014 at 3:45 PM, The default queue via RT <[email protected]>wrote: > > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "[PATCH] Correct a typo in man page", > a summary of which appears below. > > There is no need to reply to this message right now. Your ticket has been > assigned an ID of [openssl.org #3245]. > > Please include the string: > > [openssl.org #3245] > > in the subject line of all future correspondence about this issue. To do > so, > you may reply to this message. > > Thank you, > [email protected] > > ------------------------------------------------------------------------- > While going through man SSL_CTX_set_options, came across following thing. > > NOTES > The behaviour of the SSL library can be changed by setting several > options. The options are coded as bitmasks and can be combined by > alogical or operation(|). > > whereas the symbol shown is that of bitwise "OR". > > This patch corrects it > > -- > Warm Regards > --Dev > > "Any fool can write code that a computer can understand. Good programmers > write code that humans can understand." > --- Martin Fowler > > -- Warm Regards --Dev OpenPegasus Developer/Committer "Any fool can write code that a computer can understand. Good programmers write code that humans can understand." --- Martin Fowler
diff --git a/doc/ssl/SSL_CTX_set_options.pod b/doc/ssl/SSL_CTX_set_options.pod index 4f990b2..6b59a14 100644 --- a/doc/ssl/SSL_CTX_set_options.pod +++ b/doc/ssl/SSL_CTX_set_options.pod @@ -44,7 +44,7 @@ secure renegotiation. =head1 NOTES The behaviour of the SSL library can be changed by setting several options. -The options are coded as bitmasks and can be combined by a logical B<or> +The options are coded as bitmasks and can be combined by a bitwise B<or> operation (|). SSL_CTX_set_options() and SSL_set_options() affect the (external)
