STORE: Add documentation on expecting specific infos
[openssl.git] / doc / man7 / ossl_store.pod
index b4b76dd503fc224fb3417c3454c02ed8ba08a9ca..80debebafc3e04cc24812fe26d96ce64d1e3e2de 100644 (file)
@@ -59,16 +59,12 @@ only).
 
 =head2 A generic call
 
 
 =head2 A generic call
 
- /*
-  * There is also a OSSL_STORE_open_file() that can be used for file paths
-  * that can't be represented as URIs, such as Windows backslashes
-  */
  OSSL_STORE_CTX *ctx = OSSL_STORE_open("file:/foo/bar/data.pem");
 
  /*
   * OSSL_STORE_eof() simulates file semantics for any repository to signal
   * that no more data can be expected
  OSSL_STORE_CTX *ctx = OSSL_STORE_open("file:/foo/bar/data.pem");
 
  /*
   * OSSL_STORE_eof() simulates file semantics for any repository to signal
   * that no more data can be expected
-  */ 
+  */
  while (!OSSL_STORE_eof(ctx)) {
      OSSL_STORE_INFO *info = OSSL_STORE_load(ctx);
 
  while (!OSSL_STORE_eof(ctx)) {
      OSSL_STORE_INFO *info = OSSL_STORE_load(ctx);
 
@@ -89,7 +85,9 @@ only).
  OSSL_STORE_close(ctx);
 
 =head1 SEE ALSO
  OSSL_STORE_close(ctx);
 
 =head1 SEE ALSO
-L<OSSL_STORE_open(3)>, L<OSSL_STORE_INFO(3)>, L<OSSL_STORE_LOADER(3)>
+
+L<OSSL_STORE_INFO(3)>, L<OSSL_STORE_LOADER(3)>,
+L<OSSL_STORE_open(3)>, L<OSSL_STORE_expect(3)>
 
 =head1 COPYRIGHT
 
 
 =head1 COPYRIGHT