summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-11-28 14:32:31 +0000
committerRichard Levitte <levitte@openssl.org>2003-11-28 14:32:31 +0000
commit5ebdb390849f832428e00c0b811beec907a56c10 (patch)
tree4656de103c8aab6e033831f8e4ec8b876b8e38e3 /doc
parentd45a09847239c15f77c9b8b3398c802434b59b4e (diff)
Let's use text/plain in the example instead of crapy HTML.
PR: 777 Submitted by: Michael Shields <mshields@sunblocksystems.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/BIO_f_ssl.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/crypto/BIO_f_ssl.pod b/doc/crypto/BIO_f_ssl.pod
index a56ee2b92f..f0b731731f 100644
--- a/doc/crypto/BIO_f_ssl.pod
+++ b/doc/crypto/BIO_f_ssl.pod
@@ -287,8 +287,8 @@ a client and also echoes the request to standard output.
return 0;
}
- BIO_puts(sbio, "HTTP/1.0 200 OK\r\nContent-type: text/html\r\n\r\n");
- BIO_puts(sbio, "<pre>\r\nConnection Established\r\nRequest headers:\r\n");
+ BIO_puts(sbio, "HTTP/1.0 200 OK\r\nContent-type: text/plain\r\n\r\n");
+ BIO_puts(sbio, "\r\nConnection Established\r\nRequest headers:\r\n");
BIO_puts(sbio, "--------------------------------------------------\r\n");
for(;;) {
@@ -301,7 +301,7 @@ a client and also echoes the request to standard output.
}
BIO_puts(sbio, "--------------------------------------------------\r\n");
- BIO_puts(sbio, "</pre>\r\n");
+ BIO_puts(sbio, "\r\n");
/* Since there is a buffering BIO present we had better flush it */
BIO_flush(sbio);