1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

better apr_ctime() usage

(too bad it is apr_ctime_LEN instead of apr_ctime_SIZE)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@569938 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2007-08-27 00:53:41 +00:00
parent 5873511f51
commit 1c98c19f06
2 changed files with 4 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ void util_ldap_url_node_free(util_ald_cache_t *cache, void *n)
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;
@@ -218,7 +218,7 @@ void util_ldap_search_node_free(util_ald_cache_t *cache, void *n)
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);
@@ -288,7 +288,7 @@ void util_ldap_compare_node_free(util_ald_cache_t *cache, void *n)
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;