You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jw...@apache.org on 2002/03/27 22:16:37 UTC

cvs commit: httpd-2.0/modules/ssl ssl_engine_init.c ssl_engine_io.c

jwoolley    02/03/27 13:16:37

  Modified:    modules/ssl ssl_engine_init.c ssl_engine_io.c
  Log:
  "Oops" has two o's in it.  :)
  
  Revision  Changes    Path
  1.64      +3 -3      httpd-2.0/modules/ssl/ssl_engine_init.c
  
  Index: ssl_engine_init.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_init.c,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -d -u -r1.63 -r1.64
  --- ssl_engine_init.c	27 Mar 2002 21:14:49 -0000	1.63
  +++ ssl_engine_init.c	27 Mar 2002 21:16:37 -0000	1.64
  @@ -509,7 +509,7 @@
   
           if (sk_X509_NAME_num(ca_list) == 0) {
               ssl_log(s, SSL_LOG_WARN,
  -                    "Init: Ops, you want to request client authentication, "
  +                    "Init: Oops, you want to request client authentication, "
                       "but no CAs are known for verification!? "
                       "[Hint: SSLCACertificate*]");
           }
  @@ -690,7 +690,7 @@
   
       if (!ok) {
           ssl_log(s, SSL_LOG_ERROR,
  -                "Init: (%s) Ops, no RSA or DSA server certificate found?!",
  +                "Init: (%s) Oops, no RSA or DSA server certificate found?!",
                   vhost_id);
           ssl_log(s, SSL_LOG_ERROR,
                   "Init: (%s) You have to perform a *full* server restart "
  @@ -810,7 +810,7 @@
   
       if (!ok) {
           ssl_log(s, SSL_LOG_ERROR,
  -                "Init: (%s) Ops, no RSA or DSA server private key found?!",
  +                "Init: (%s) Oops, no RSA or DSA server private key found?!",
                   vhost_id);
           ssl_die();
       }
  
  
  
  1.65      +1 -1      httpd-2.0/modules/ssl/ssl_engine_io.c
  
  Index: ssl_engine_io.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_io.c,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -d -u -r1.64 -r1.65
  --- ssl_engine_io.c	27 Mar 2002 01:58:15 -0000	1.64
  +++ ssl_engine_io.c	27 Mar 2002 21:16:37 -0000	1.65
  @@ -986,7 +986,7 @@
                       (cmd == (BIO_CB_WRITE|BIO_CB_RETURN) ? "write" : "read"),
                       rc, argi, (cmd == (BIO_CB_WRITE|BIO_CB_RETURN) ? "to" : "from"),
                       bio, argp,
  -                    (argp != NULL ? "(BIO dump follows)" : "(Ops, no memory buffer?)"));
  +                    (argp != NULL ? "(BIO dump follows)" : "(Oops, no memory buffer?)"));
               if (argp != NULL)
                   ssl_io_data_dump(s, argp, rc);
           }