You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by dr...@apache.org on 2003/09/10 11:18:59 UTC

cvs commit: apr/file_io/unix filestat.c

dreid       2003/09/10 02:18:59

  Modified:    file_io/unix filestat.c
  Log:
  Add a needed header file when we're using utime.
  
  Revision  Changes    Path
  1.70      +4 -0      apr/file_io/unix/filestat.c
  
  Index: filestat.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/unix/filestat.c,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- filestat.c	3 Sep 2003 18:26:57 -0000	1.69
  +++ filestat.c	10 Sep 2003 09:18:59 -0000	1.70
  @@ -58,6 +58,10 @@
   #include "apr_strings.h"
   #include "apr_errno.h"
   
  +#ifdef HAVE_UTIME
  +#include <utime.h>
  +#endif
  +
   static apr_filetype_e filetype_from_mode(mode_t mode)
   {
       apr_filetype_e type;