Skip to content
Snippets Groups Projects
  1. Aug 16, 2021
  2. Aug 13, 2021
  3. Aug 12, 2021
  4. Aug 11, 2021
  5. Jul 06, 2021
    • George Kadianakis's avatar
    • George Kadianakis's avatar
      98b9df61
    • Nick Mathewson's avatar
      Use native timegm when available. · c1d96358
      Nick Mathewson authored
      Continue having a tor_gmtime_impl() unit test so that we can detect
      any problems in our replacement function; add a new test function to
      make sure that gmtime<->timegm are a round-trip on now-ish times.
      
      This is a fix for bug #40383, wherein we ran into trouble because
      tor_timegm() does not believe that time_t should include a count of
      leap seconds, but FreeBSD's gmtime believes that it should.  This
      disagreement meant that for a certain amount of time each day,
      instead of calculating the most recent midnight, our voting-schedule
      functions would calculate the second-most-recent midnight, and lead
      to an assertion failure.
      
      I am calling this a bugfix on 0.2.0.3-alpha when we first started
      calculating our voting schedule in this way.
      c1d96358
  6. Jul 01, 2021
    • Nick Mathewson's avatar
      Suppress a clang 12 warning about "suspicious concatenation". · 2bc02b21
      Nick Mathewson authored
      My clang doesn't like it when we write code like this:
      
          char *list[] = {
             "abc",
             "def",
             "ghi"
             "jkl"
          }
      
      It wonders whether we meant to put a comma between "ghi" and "jkl"
      or not, and gives a warning.
      
      To suppress this warning (since in this case, we did mean to omit
      the comma), we just wrap the two strings in parentheses.
      
      Closes #40426; bugfix on 0.4.0.4-rc.
      2bc02b21
  7. Jun 30, 2021
  8. Jun 28, 2021
  9. Jun 25, 2021
  10. Jun 14, 2021
  11. Jun 10, 2021
Loading