1. 25 Aug, 2014 5 commits
  2. 18 Aug, 2014 9 commits
  3. 13 Aug, 2014 3 commits
  4. 12 Aug, 2014 4 commits
  5. 08 Aug, 2014 15 commits
  6. 07 Aug, 2014 4 commits
    • Jan-Erik Rediger's avatar
      install_server.sh: add missing bang · 6df1251b
      Jan-Erik Rediger authored
      This was discovered by _bodya and reported in the IRC channel.
      Everything worked fine as these scripts are always executed as shell
      scripts.
      
      Closes #1728
      6df1251b
    • Edgars Irmejs's avatar
      Change unixsocketperm comment to 700 from 755 · 67c4fbed
      Edgars Irmejs authored
      According to unix manuals, "Connecting to the socket object requires
      read/write permission." -- mode 755 is useless for anybody
      other than the owner.
      
      Fixes #1696
      67c4fbed
    • ripcurld00d's avatar
      redis-check-dump: use names instead of magic nums · 9b4efe6c
      ripcurld00d authored
      Use constants to avoid magic numbers in `types`, which is an array
      that stores the names of `REDIS` types.
      
      Closes #1681
      9b4efe6c
    • Kashif Rasul's avatar
      Fix issues raised by clang analyzer · c49378fe
      Kashif Rasul authored
      Modified by @antirez since the original fix to genInfoString() looked
      weak. Probably the clang analyzer complained about `section` being
      possibly NULL, and strcasecmp() called with a NULL pointer. In the
      practice this can never happen, still for the sake of correctness
      the right fix is not to modify only the first call, but to set `section`
      to the value of "default" if it happens to be NULL.
      
      Closes #1660
      c49378fe