Remove indentation in the NAME section. There's really no need to
authorRichard Levitte <levitte@openssl.org>
Thu, 14 Sep 2000 12:14:41 +0000 (12:14 +0000)
committerRichard Levitte <levitte@openssl.org>
Thu, 14 Sep 2000 12:14:41 +0000 (12:14 +0000)
indent there, especially since the pod2* scripts will regard that as
preformated text.  In one case, indent a code section one step.

16 files changed:
doc/crypto/BIO_ctrl.pod
doc/crypto/BIO_f_base64.pod
doc/crypto/BIO_f_cipher.pod
doc/crypto/BIO_f_md.pod
doc/crypto/BIO_f_null.pod
doc/crypto/BIO_find_type.pod
doc/crypto/BIO_new.pod
doc/crypto/BIO_push.pod
doc/crypto/BIO_read.pod
doc/crypto/BIO_s_fd.pod
doc/crypto/BIO_s_file.pod
doc/crypto/BIO_s_mem.pod
doc/crypto/BIO_s_null.pod
doc/crypto/BIO_s_socket.pod
doc/crypto/BIO_set_callback.pod
doc/crypto/BIO_should_retry.pod

index dfec0196146e871aafb555f2493db58271c0ad95..c00fda9b08bbf6c1f464abc974b7dda37aef91a9 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_ctrl, BIO_callback_ctrl, BIO_ptr_ctrl, BIO_int_ctrl - BIO control operations
+BIO_ctrl, BIO_callback_ctrl, BIO_ptr_ctrl, BIO_int_ctrl - BIO control operations
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index ec90fc2228c87a38336fc993b19c1944a95947f8..5ab702cb9ea838bc76129704f2441a5e1b18c1f3 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_f_base64 - base64 BIO
+BIO_f_base64 - base64 BIO
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index 7270c743c5ec7b3a3a0db1569908dfe257f1379d..b0bc00daf0ec20a63bc4d68dce6f77f5fb82599f 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_f_cipher - cipher BIO
+BIO_f_cipher - cipher BIO
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index a5bb6922215df767fadefc38d7853a40c33c16d9..74e46bb1d24f4f6e8a07ff3a4d9482794ec6b0b2 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_f_md - message digest BIO
+BIO_f_md - message digest BIO
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index 8156b51b8fb90c3e52c1d7fb961bce28edb969fd..b057c1840832f1629549523b35a9c078cad9a478 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_f_null - null filter
+BIO_f_null - null filter
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index cc18c06228d3784e02f4fbc29254913f745a2bc5..bd3b25619617e952c25b9f1204bccc4ee923df09 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_find_type, BIO_next - BIO chain traversal
+BIO_find_type, BIO_next - BIO chain traversal
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index 3c8f947da3e6c932857a4c8b2568596c5d346af5..53d56b2e6fadcb977979af3d5d0f91d5faa2a115 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_new, BIO_set, BIO_free, BIO_vfree, BIO_free_all - BIO allocation and freeing functions
+BIO_new, BIO_set, BIO_free, BIO_vfree, BIO_free_all - BIO allocation and freeing functions
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index 5d0d39e4f06f0d1b1a1eed7540d42b7c56b97b84..8af1d3c09751b55f98caadbd60f0e281a968d15a 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_push, BIO_pop - add and remove BIOs from a chain.
+BIO_push, BIO_pop - add and remove BIOs from a chain.
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index e7eb5ea0450512a3b2d090ac58b26625675e6c45..563806c206f0b08329e4f4cb951481225da1dd70 100644 (file)
@@ -2,16 +2,16 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_read, BIO_write, BIO_gets, BIO_puts - BIO I/O functions
+BIO_read, BIO_write, BIO_gets, BIO_puts - BIO I/O functions
 
 =head1 SYNOPSIS
 
  #include <openssl/bio.h>
 
 
 =head1 SYNOPSIS
 
  #include <openssl/bio.h>
 
-int    BIO_read(BIO *b, void *buf, int len);
-int    BIO_gets(BIO *b,char *buf, int size);
-int    BIO_write(BIO *b, const void *buf, int len);
-int    BIO_puts(BIO *b,const char *buf);
+ int   BIO_read(BIO *b, void *buf, int len);
+ int   BIO_gets(BIO *b,char *buf, int size);
+ int   BIO_write(BIO *b, const void *buf, int len);
+ int   BIO_puts(BIO *b,const char *buf);
 
 =head1 DESCRIPTION
 
 
 =head1 DESCRIPTION
 
index 5c7c55fa896ca3043fe22bbe0a39793c8c260a51..6f0341e1ed429c0cadff1738f27c0ba785a599ae 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_s_fd - file descriptor BIO
+BIO_s_fd - file descriptor BIO
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index b46c88c41b5d7648af1772897eb25c38f13ff86a..2331f46460168e24966a0d597c12bf169cd2138b 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_s_file - FILE bio.
+BIO_s_file - FILE bio.
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index 9eb1fc056a74e70cfe5ac447666e6f778ba12c02..47f64b0f33d1a541e317ace41d4dc4d160cf406a 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_s_mem - memory BIO
+BIO_s_mem - memory BIO
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index c64c9838bc49e1e99ae182960f71fe19ead9208f..e5514f723898c4d51beb37cd083ae04db2d514a5 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_s_null - null data sink
+BIO_s_null - null data sink
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index cf4b47880c87bf9f5ebfdcdbf3ba0a8851ca323a..b8e25db22e3753a335a061d54129a807b616ca2e 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_s_socket - socket BIO
+BIO_s_socket - socket BIO
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index c6ae12b21d2ad93e4f5b8ae19b46ad46bf834a1f..90cde79ad049decb235a4429f898a9d195d51753 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_set_callback, BIO_get_callback - BIO callback
+BIO_set_callback, BIO_get_callback - BIO callback
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS
 
index 6d291b188832b27a375ec2eac20ec8f1db52bd86..a0cfbc4076e133870351a92f128521b7829c23bc 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-       BIO_should_retry, BIO_should_read, BIO_should_write - BIO retry functions
+BIO_should_retry, BIO_should_read, BIO_should_write - BIO retry functions
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS