1. 03 Feb, 2014 2 commits
  2. 31 Jan, 2014 5 commits
  3. 28 Jan, 2014 2 commits
  4. 25 Jan, 2014 1 commit
  5. 22 Jan, 2014 3 commits
  6. 14 Jan, 2014 2 commits
  7. 13 Jan, 2014 13 commits
  8. 09 Jan, 2014 2 commits
  9. 08 Jan, 2014 4 commits
  10. 25 Dec, 2013 5 commits
  11. 23 Dec, 2013 1 commit
    • antirez's avatar
      Fix CONFIG REWRITE handling of unknown options. · 4ad219ad
      antirez authored
      There were two problems with the implementation.
      
      1) "save" was not correctly processed when no save point was configured,
         as reported in issue #1416.
      2) The way the code checked if an option existed in the "processed"
         dictionary was wrong, as we add the element with as a key associated
         with a NULL value, so dictFetchValue() can't be used to check for
         existance, but dictFind() must be used, that returns NULL only if the
         entry does not exist at all.
      4ad219ad