|
|
198568 |
commit 4c924d9062406762c44ce95bdee14dadf4bfeed2
|
|
|
198568 |
Author: Thijs Kinkhorst <thijs@kinkhorst.com>
|
|
|
198568 |
Date: Sun Jul 9 14:42:29 2017 +0000
|
|
|
198568 |
|
|
|
198568 |
Fix some log message typos
|
|
|
198568 |
|
|
|
198568 |
diff --git a/auth_mellon_cache.c b/auth_mellon_cache.c
|
|
|
198568 |
index 9a5bb0e..cd3b9b0 100644
|
|
|
198568 |
--- a/auth_mellon_cache.c
|
|
|
198568 |
+++ b/auth_mellon_cache.c
|
|
|
198568 |
@@ -740,7 +740,7 @@ int am_cache_set_lasso_state(am_cache_entry_t *session,
|
|
|
198568 |
lasso_identity);
|
|
|
198568 |
if (status != 0) {
|
|
|
198568 |
ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL,
|
|
|
198568 |
- "Lasso identity is to big for storage. Size of lasso"
|
|
|
198568 |
+ "Lasso identity is too big for storage. Size of lasso"
|
|
|
198568 |
" identity is %" APR_SIZE_T_FMT ".",
|
|
|
198568 |
(apr_size_t)strlen(lasso_identity));
|
|
|
198568 |
return HTTP_INTERNAL_SERVER_ERROR;
|
|
|
198568 |
@@ -751,7 +751,7 @@ int am_cache_set_lasso_state(am_cache_entry_t *session,
|
|
|
198568 |
lasso_session);
|
|
|
198568 |
if (status != 0) {
|
|
|
198568 |
ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL,
|
|
|
198568 |
- "Lasso session is to big for storage. Size of lasso"
|
|
|
198568 |
+ "Lasso session is too big for storage. Size of lasso"
|
|
|
198568 |
" session is %" APR_SIZE_T_FMT ".",
|
|
|
198568 |
(apr_size_t)strlen(lasso_session));
|
|
|
198568 |
return HTTP_INTERNAL_SERVER_ERROR;
|
|
|
198568 |
@@ -762,8 +762,8 @@ int am_cache_set_lasso_state(am_cache_entry_t *session,
|
|
|
198568 |
lasso_saml_response);
|
|
|
198568 |
if (status != 0) {
|
|
|
198568 |
ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL,
|
|
|
198568 |
- "Lasso SAML response is to big for storage. Size of "
|
|
|
198568 |
- "lasso SAML Reponse is %" APR_SIZE_T_FMT ".",
|
|
|
198568 |
+ "Lasso SAML response is too big for storage. Size of "
|
|
|
198568 |
+ "lasso SAML Response is %" APR_SIZE_T_FMT ".",
|
|
|
198568 |
(apr_size_t)strlen(lasso_saml_response));
|
|
|
198568 |
return HTTP_INTERNAL_SERVER_ERROR;
|
|
|
198568 |
}
|
|
|
198568 |
diff --git a/auth_mellon_util.c b/auth_mellon_util.c
|
|
|
198568 |
index 34cf88d..19bfb41 100644
|
|
|
198568 |
--- a/auth_mellon_util.c
|
|
|
198568 |
+++ b/auth_mellon_util.c
|
|
|
198568 |
@@ -1823,7 +1823,7 @@ tokenize(apr_pool_t *pool, const char *str, bool ignore_whitespace,
|
|
|
198568 |
}
|
|
|
198568 |
if (*p != '\"') {
|
|
|
198568 |
*error = apr_psprintf(pool,
|
|
|
198568 |
- "unterminated string begining at "
|
|
|
198568 |
+ "unterminated string beginning at "
|
|
|
198568 |
"position %" APR_SIZE_T_FMT " in \"%s\"",
|
|
|
198568 |
start-str, str);
|
|
|
198568 |
break;
|