void util_ldap_url_node_display(request_rec *r, util_ald_cache_t *cache, void *n)
{
util_url_node_t *node = n;
- char date_str[APR_CTIME_LEN+1];
+ char date_str[APR_CTIME_LEN];
const char *type_str;
util_ald_cache_t *cache_node;
int x;
void util_ldap_search_node_display(request_rec *r, util_ald_cache_t *cache, void *n)
{
util_search_node_t *node = n;
- char date_str[APR_CTIME_LEN+1];
+ char date_str[APR_CTIME_LEN];
apr_ctime(date_str, node->lastbind);
void util_ldap_compare_node_display(request_rec *r, util_ald_cache_t *cache, void *n)
{
util_compare_node_t *node = n;
- char date_str[APR_CTIME_LEN+1];
+ char date_str[APR_CTIME_LEN];
char *cmp_result;
char *sub_groups_val;
char *sub_groups_checked;
if (r->args && strlen(r->args)) {
char cachetype[5], lint[2];
unsigned int id, off;
- char date_str[APR_CTIME_LEN+1];
+ char date_str[APR_CTIME_LEN];
if ((3 == sscanf(r->args, scanfmt, cachetype, &id, &off, lint)) &&
(id < util_ldap_cache->size)) {