Commit acb5b343 authored by Bodo Möller's avatar Bodo Möller
Browse files

Change spelling back to "behaviour" and "flavour" instead of the

American variants.
parent c1629c9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -694,7 +694,7 @@ There should be options to explicitly set such things as start and end
dates rather than an offset from the current time.

The code to implement the verify behaviour described in the B<TRUST SETTINGS>
is currently being developed. It thus describes the intended behavior rather
is currently being developed. It thus describes the intended behaviour rather
than the current behaviour. It is hoped that it will represent reality in
OpenSSL 0.9.5 and later.

+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ outputs them. This could be used with the examples above.

=head1 BUGS

The lack of support for BIO_puts() and the non standard behavior of
The lack of support for BIO_puts() and the non standard behaviour of
BIO_gets() could be regarded as anomalous. It could be argued that BIO_gets()
and BIO_puts() should be passed to the next BIO in the chain and digest
the data passed through and that digests should be retrieved using a
+2 −2
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ BIO_ssl_shutdown - SSL BIO
=head1 DESCRIPTION

BIO_f_ssl() returns the SSL BIO method. This is a filter BIO which
is a wrapper round the OpenSSL SSL routines adding a BIO "flavor" to
is a wrapper round the OpenSSL SSL routines adding a BIO "flavour" to
SSL I/O. 

I/O performed on an SSL BIO communicates using the SSL protocol with
@@ -100,7 +100,7 @@ renegotiation takes place during a BIO_read() operation, one
case where this happens is when SGC or step up occurs.

In OpenSSL 0.9.6 and later the SSL flag SSL_AUTO_RETRY can be
set to disable this behavior. That is when this flag is set
set to disable this behaviour. That is when this flag is set
an SSL BIO using a blocking transport will never request a
retry.

+2 −2
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ BIO_new_fd() returns a file descriptor BIO using B<fd> and B<close_flag>.

=head1 NOTES

The behavior of BIO_read() and BIO_write() depends on the behavior of the
The behaviour of BIO_read() and BIO_write() depends on the behavior of the
platforms read() and write() calls on the descriptor. If the underlying 
file descriptor is in a non blocking mode then the BIO will behave in the
manner described in the L<BIO_read(3)|BIO_read(3)> and L<BIO_should_retry(3)|BIO_should_retry(3)>
@@ -56,7 +56,7 @@ BIO_s_fd() returns the file descriptor BIO method.
BIO_reset() returns zero for success and -1 if an error occurred.
BIO_seek() and BIO_tell() return the current file position or -1
is an error occurred. These values reflect the underlying lseek()
behavior.
behaviour.

BIO_set_fd() always returns 1.

+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ When wrapping stdout, stdin or stderr the underlying stream should not
normally be closed so the BIO_NOCLOSE flag should be set.

Because the file BIO calls the underlying stdio functions any quirks
in stdio behavior will be mirrored by the corresponding BIO.
in stdio behaviour will be mirrored by the corresponding BIO.

=head1 EXAMPLES

Loading