]> granicus.if.org Git - apache/commitdiff
Whitespace fixes for r1200040
authorPaul Querna <pquerna@apache.org>
Wed, 9 Nov 2011 23:44:53 +0000 (23:44 +0000)
committerPaul Querna <pquerna@apache.org>
Wed, 9 Nov 2011 23:44:53 +0000 (23:44 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1200045 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_config.c
modules/ssl/ssl_private.h

index 2e36a106ab41fedfe266deac8f9f3083f169dc22..96d63ce50d7e285550253c6dd0f19b147a5e0d61 100644 (file)
@@ -622,17 +622,17 @@ const char *ssl_cmd_SSLTicketKeyFile(cmd_parms *cmd, void *dcfg, const char *nam
                        APR_OS_DEFAULT, cmd->temp_pool);
 
     if (rv != APR_SUCCESS) {
-      return apr_psprintf(cmd->pool,
-                          "Failed to open %s: (%d) %pm",
-                          path, rv, &rv);
+        return apr_psprintf(cmd->pool,
+                            "Failed to open %s: (%d) %pm",
+                            path, rv, &rv);
     }
 
     rv = apr_file_read_full(fp, &buf[0], TLSEXT_TICKET_KEYLEN, &len);
 
     if (rv != APR_SUCCESS) {
-      return apr_psprintf(cmd->pool,
-                          "Failed to read at least 48 bytes from %s: (%d) %pm",
-                          path, rv, &rv);
+        return apr_psprintf(cmd->pool,
+                            "Failed to read at least 48 bytes from %s: (%d) %pm",
+                            path, rv, &rv);
     }
 
     ticket = apr_palloc(cmd->pool, sizeof(modssl_ticket_t));
index 05ec820540988086501076b6a43accee41de50cc..43949eee32726b20c2debc8e7ec2c6cd5f516e4f 100644 (file)
@@ -570,11 +570,11 @@ typedef struct {
 #define TLSEXT_TICKET_KEYLEN (48)
 
 typedef struct {
-  /* Human readable name, used in the configuration */
-  const char *conf_name;
-  char key_name[16];
-  char hmac_secret[16];
-  char aes_key[16];
+    /* Human readable name, used in the configuration */
+    const char *conf_name;
+    char key_name[16];
+    char hmac_secret[16];
+    char aes_key[16];
 } modssl_ticket_t;
 #endif