Skip to content

Commit

Permalink
release 2.4.15.4
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Mar 12, 2024
1 parent bf1453a commit 833283c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
03/12/2024
- release 2.4.15.4

03/11/2024
- avoid warning about setting a self-provided default value in the provider config

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([mod_auth_openidc],[2.4.15.4dev],[[email protected]])
AC_INIT([mod_auth_openidc],[2.4.15.4],[[email protected]])

AC_SUBST(NAMEVER, AC_PACKAGE_TARNAME()-AC_PACKAGE_VERSION())

Expand Down
2 changes: 1 addition & 1 deletion src/const.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static inline int _oidc_strncmp(const char *a, const char *b, size_t n) {
return ((a && b) ? strncmp(a, b, n) : -1);
}
static inline char *_oidc_strstr(const char *a, const char *b) {
return ((a && b) ? strstr(a, b) : NULL);
return ((a && b) ? (char *)strstr(a, b) : NULL);
}
static inline apr_time_t _oidc_str_to_time(const char *s, const apr_time_t default_value) {
apr_time_t v = default_value;
Expand Down

0 comments on commit 833283c

Please sign in to comment.