]> granicus.if.org Git - apache/commitdiff
Clean up the stat commit. Basically there was one struct stat that I
authorRyan Bloom <rbb@apache.org>
Mon, 12 Jun 2000 18:07:43 +0000 (18:07 +0000)
committerRyan Bloom <rbb@apache.org>
Mon, 12 Jun 2000 18:07:43 +0000 (18:07 +0000)
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
server/mpm/mpmt_beos/mpmt_beos.c
server/mpm/mpmt_pthread/mpmt_pthread.c
server/mpm/spmt_os2/spmt_os2.c
server/mpm/winnt/mpm_winnt.c

index 7ccec22108f2d32901c130ab69b0a7996560dba2..9e33083cf1946ca41f791fe81507ff073405339d 100644 (file)
@@ -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) {
index a32415fa1c6226a8aa33fe7ecdd36f23aae9166f..8e8f825ffbd8fdcb06c540a5cc3f258089862cb0 100644 (file)
@@ -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) {
index 3c896ff3557e976807856761256c39f1e93059a6..40935bc2c35d80638aad3873a035a4d962a9d1e1 100644 (file)
@@ -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) {
index a54b146cfbcc551e592a6a509222794c97191338..783fadbc060dc52d7ef44f710cf4c3ce382895b2 100644 (file)
@@ -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) {
index fa67a23358e80fd81739d952eb8a49e1fe03c23f..f41ace1d5bfe4a1af1ae197c1373cacfb87e8e51 100644 (file)
@@ -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) {