diff options
author | Jeff Trawick <trawick@apache.org> | 2000-08-06 14:15:57 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-08-06 14:15:57 +0200 |
commit | 15a43f69563e77ea085bb15791528da0e9e93841 (patch) | |
tree | 7b358b0e249f473c89a0e9a877905c9ebd18a5f3 | |
parent | Remaining cleanup of ap_ -> apr_ and AP_ -> APR_ transformation... (diff) | |
download | apache2-15a43f69563e77ea085bb15791528da0e9e93841.tar.xz apache2-15a43f69563e77ea085bb15791528da0e9e93841.zip |
Finish renaming AP_CTIME_LEN to APR_CTIME_LEN.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86009 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/generators/mod_cgid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/generators/mod_cgid.c b/modules/generators/mod_cgid.c index 730a2862f1..2aec35f860 100644 --- a/modules/generators/mod_cgid.c +++ b/modules/generators/mod_cgid.c @@ -710,7 +710,7 @@ static int log_scripterror(request_rec *r, cgid_server_conf * conf, int ret, { apr_file_t *f = NULL; struct stat finfo; - char time_str[AP_CTIME_LEN]; + char time_str[APR_CTIME_LEN]; ap_log_rerror(APLOG_MARK, show_errno|APLOG_ERR, errno, r, "%s: %s", error, r->filename); @@ -745,7 +745,7 @@ static int log_script(request_rec *r, cgid_server_conf * conf, int ret, apr_file_t *f = NULL; int i; struct stat finfo; - char time_str[AP_CTIME_LEN]; + char time_str[APR_CTIME_LEN]; if (!conf->logname || ((stat(ap_server_root_relative(r->pool, conf->logname), &finfo) == 0) |