]> granicus.if.org Git - apache/commitdiff
"Oops" has two o's in it. :)
authorCliff Woolley <jwoolley@apache.org>
Wed, 27 Mar 2002 21:16:37 +0000 (21:16 +0000)
committerCliff Woolley <jwoolley@apache.org>
Wed, 27 Mar 2002 21:16:37 +0000 (21:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94235 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_init.c
modules/ssl/ssl_engine_io.c

index 2ac2f7519c48ecd818969da5e3957e77e180d8ed..db5e2890231cf1d29230cb3ae0d3ab0c4fca85be 100644 (file)
@@ -509,7 +509,7 @@ static void ssl_init_verify(server_rec *s,
 
         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 @@ void ssl_init_ConfigureServer(server_rec *s,
 
     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 @@ void ssl_init_ConfigureServer(server_rec *s,
 
     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();
     }
index 92201ca4c5319d3528d6920dadc8e34be2b8e33f..403920c47dd324e2577f3bd9730876aeacb4522a 100644 (file)
@@ -986,7 +986,7 @@ long ssl_io_data_cb(BIO *bio, int cmd,
                     (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);
         }