1. 17 May, 2021 1 commit
  2. 04 Mar, 2021 1 commit
    • Érico Rolim's avatar
      storage/plugins/CurlStorage: don't use glibc extension in · c95e3dc0
      Érico Rolim authored
      ParseTimePoint.
      
      %Z is a glibc extension to strptime, and is a no-op there, due to the
      mapping between timezone names and their definition (especially when the
      name comes from a different machine) being ambiguous / impossible.  Time
      in HTTP headers is guaranteed to be UTC.
      
      Passing an unknown format to strptime() implementations that don't
      support it will generally cause them to return NULL, which will lead to
      ParseTimePoint throwing an exception and ParseTimeStamp using an
      unnecessary fallback.
      
      Since the timezone name goes at the end of the string, we don't need to
      use %Z to skip it (could be an issue in a different time stamp format),
      so simply removing %Z works best.
      c95e3dc0
  3. 08 Jan, 2021 1 commit
  4. 05 Jan, 2021 1 commit
  5. 04 Jan, 2021 3 commits
  6. 01 Jan, 2021 1 commit
  7. 06 Nov, 2020 1 commit
  8. 30 May, 2020 1 commit
  9. 22 Apr, 2020 1 commit
  10. 15 Apr, 2020 2 commits
  11. 03 Apr, 2020 3 commits
  12. 26 Mar, 2020 1 commit
  13. 16 Mar, 2020 1 commit
  14. 13 Mar, 2020 1 commit
  15. 12 Mar, 2020 2 commits
  16. 04 Feb, 2020 1 commit
  17. 18 Jan, 2020 1 commit
  18. 23 Dec, 2019 1 commit
  19. 16 Dec, 2019 1 commit
  20. 15 Oct, 2019 7 commits
  21. 07 Oct, 2019 1 commit
  22. 09 Aug, 2019 1 commit
  23. 05 Jul, 2019 1 commit
  24. 08 May, 2019 1 commit
  25. 07 May, 2019 1 commit
  26. 26 Apr, 2019 1 commit
  27. 25 Apr, 2019 1 commit
  28. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c