From 09076e771aef8c7ab3074e354f2f5ae2dc36c547 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Mon, 12 Jun 2000 18:07:43 +0000 Subject: [PATCH] Clean up the stat commit. Basically there was one struct stat that I missed converting to ap_finfo_t. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85545 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/dexter/dexter.c | 3 ++- server/mpm/mpmt_beos/mpmt_beos.c | 2 +- server/mpm/mpmt_pthread/mpmt_pthread.c | 3 ++- server/mpm/spmt_os2/spmt_os2.c | 2 +- server/mpm/winnt/mpm_winnt.c | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/server/mpm/dexter/dexter.c b/server/mpm/dexter/dexter.c index 7ccec22108..9e33083cf1 100644 --- a/server/mpm/dexter/dexter.c +++ b/server/mpm/dexter/dexter.c @@ -60,6 +60,7 @@ #include "ap_config.h" #include "apr_portable.h" +#include "apr_file_io.h" #include "httpd.h" #include "http_main.h" #include "http_log.h" @@ -1426,7 +1427,7 @@ static const char *set_maintain_connection_status(cmd_parms *cmd, static const char *set_coredumpdir (cmd_parms *cmd, void *dummy, char *arg) { - struct stat finfo; + ap_finfo_t finfo; const char *fname; const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); if (err != NULL) { diff --git a/server/mpm/mpmt_beos/mpmt_beos.c b/server/mpm/mpmt_beos/mpmt_beos.c index a32415fa1c..8e8f825ffb 100644 --- a/server/mpm/mpmt_beos/mpmt_beos.c +++ b/server/mpm/mpmt_beos/mpmt_beos.c @@ -1098,7 +1098,7 @@ static const char *set_maintain_connection_status(cmd_parms *cmd, static const char *set_coredumpdir (cmd_parms *cmd, void *dummy, char *arg) { - struct stat finfo; + ap_file_t finfo; const char *fname; const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); if (err != NULL) { diff --git a/server/mpm/mpmt_pthread/mpmt_pthread.c b/server/mpm/mpmt_pthread/mpmt_pthread.c index 3c896ff355..40935bc2c3 100644 --- a/server/mpm/mpmt_pthread/mpmt_pthread.c +++ b/server/mpm/mpmt_pthread/mpmt_pthread.c @@ -59,6 +59,7 @@ #define CORE_PRIVATE #include "apr_portable.h" +#include "apr_file_io.h" #include "apr_thread_proc.h" #include "ap_config.h" #include "httpd.h" @@ -1431,7 +1432,7 @@ static const char *set_max_requests(cmd_parms *cmd, void *dummy, char *arg) static const char *set_coredumpdir (cmd_parms *cmd, void *dummy, char *arg) { - struct ap_finfo_t finfo; + ap_finfo_t finfo; const char *fname; const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); if (err != NULL) { diff --git a/server/mpm/spmt_os2/spmt_os2.c b/server/mpm/spmt_os2/spmt_os2.c index a54b146cfb..783fadbc06 100644 --- a/server/mpm/spmt_os2/spmt_os2.c +++ b/server/mpm/spmt_os2/spmt_os2.c @@ -1600,7 +1600,7 @@ static const char *set_max_requests(cmd_parms *cmd, void *dummy, char *arg) static const char *set_coredumpdir (cmd_parms *cmd, void *dummy, char *arg) { - struct stat finfo; + ap_file_t finfo; const char *fname; const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); if (err != NULL) { diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index fa67a23358..f41ace1d5b 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -2235,7 +2235,7 @@ static const char *set_max_requests(cmd_parms *cmd, void *dummy, char *arg) static const char *set_coredumpdir (cmd_parms *cmd, void *dummy, char *arg) { - struct stat finfo; + ap_finfo_t finfo; const char *fname; const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); if (err != NULL) { -- 2.40.0