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));
#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