Fix if/for/while( in docs
[openssl.git] / doc / crypto / BIO_s_connect.pod
index 29192a6cf0c9996dff5b76b27efde566f26a4193..2143acd0992543b7d7098124941a5a2e5561128c 100644 (file)
@@ -176,7 +176,7 @@ to retrieve a page and copy the result to standard output.
  BIO_puts(cbio, "GET / HTTP/1.0\n\n");
  for ( ; ; ) {
      len = BIO_read(cbio, tmpbuf, 1024);
-     if(len <= 0)
+     if (len <= 0)
          break;
      BIO_write(out, tmpbuf, len);
  }