Skip to content
Snippets Groups Projects
  1. Dec 23, 2016
  2. Dec 22, 2016
  3. Dec 13, 2016
  4. Nov 30, 2016
  5. Nov 26, 2016
  6. Nov 24, 2016
  7. Nov 19, 2016
  8. Oct 27, 2016
    • Anthony J. Bentley's avatar
      common: convert to standard stat()/fstat() interfaces · 26af2b64
      Anthony J. Bentley authored
      Most modern Unix environments use 64-bit off_t by default: OpenBSD,
      FreeBSD, OS X, and Linux libc implementations such as Musl.
      
      glibc is the lone exception; it can default to 32 bits but this is
      configurable by setting _FILE_OFFSET_BITS.
      
      Avoiding the stat64()/fstat64() interfaces is desirable because they
      are nonstandard and not implemented on many systems (including
      OpenBSD and FreeBSD), and using 64 bits for stat()/fstat() is either
      the default or trivial to set up.
      26af2b64
    • Jan Beich's avatar
      common: stat64 is non-standard, hide on a random Unix · 51f92f0e
      Jan Beich authored
      src/common/file_util.cpp:79:19: error: variable has incomplete type 'struct stat64'
          struct stat64 file_info;
                        ^
      src/common/file_util.cpp:79:12: note: forward declaration of 'stat64'
          struct stat64 file_info;
                 ^
      src/common/file_util.cpp:99:19: error: variable has incomplete type 'struct stat64'
          struct stat64 file_info;
                        ^
      src/common/file_util.cpp:99:12: note: forward declaration of 'stat64'
          struct stat64 file_info;
                 ^
      src/common/file_util.cpp:342:19: error: variable has incomplete type 'struct stat64'
          struct stat64 buf;
                        ^
      src/common/file_util.cpp:342:12: note: forward declaration of 'stat64'
          struct stat64 buf;
                 ^
      src/common/file_util.cpp:359:19: error: variable has incomplete type 'struct stat64'
          struct stat64 buf;
                        ^
      src/common/file_util.cpp:359:12: note: forward declaration of 'stat64'
          struct stat64 buf;
                 ^
      4 errors generated.
      51f92f0e
  9. Sep 21, 2016
  10. Sep 19, 2016
  11. Sep 18, 2016
  12. Sep 13, 2016
  13. Jun 19, 2016
    • Yuri Kunde Schlesner's avatar
      Fix recursive scanning of directories · d6792632
      Yuri Kunde Schlesner authored
      ForeachDirectoryEntry didn't actually do anything with the `recursive`
      parameter, and the corresponding callback parameter was shadowing the
      actual recursion counters in the user functions.
      d6792632
  14. May 21, 2016
  15. Apr 15, 2016
  16. Apr 14, 2016
  17. Mar 31, 2016
  18. Jan 16, 2016
  19. Dec 23, 2015
  20. Nov 27, 2015
  21. Oct 01, 2015
  22. Sep 16, 2015
  23. Jun 27, 2015
  24. May 29, 2015
  25. May 07, 2015
  26. Feb 25, 2015
  27. Feb 20, 2015
  28. Jan 04, 2015
  29. Jan 03, 2015
Loading