1. 26 Jul, 2017 2 commits
  2. 25 Jul, 2017 1 commit
  3. 24 Jul, 2017 1 commit
  4. 23 Jul, 2017 2 commits
  5. 15 Jul, 2017 1 commit
  6. 10 Jul, 2017 4 commits
  7. 07 Jul, 2017 1 commit
  8. 05 Jul, 2017 2 commits
  9. 06 Jun, 2017 2 commits
  10. 01 Jun, 2017 1 commit
  11. 23 May, 2017 1 commit
  12. 25 Apr, 2017 5 commits
  13. 21 Apr, 2017 3 commits
  14. 20 Apr, 2017 1 commit
    • Diederik de Groot's avatar
      implement: readJailName · 49af12e7
      Diederik de Groot authored
      Note: dragonflybsd does not have 'jail_get' like freebsd does.
      It does however provide a sysctl "jail.list" which returns a list of all jails.
      49af12e7
  15. 19 Apr, 2017 2 commits
  16. 29 Mar, 2017 2 commits
  17. 25 Mar, 2017 1 commit
  18. 23 Mar, 2017 1 commit
  19. 16 Feb, 2017 2 commits
  20. 04 Feb, 2017 2 commits
  21. 31 Jan, 2017 1 commit
  22. 30 Dec, 2016 1 commit
  23. 29 Dec, 2016 1 commit
    • Tomasz Kramkowski's avatar
      Replace all uses of sprintf with snprintf · 2b5c1b4b
      Tomasz Kramkowski authored
      In all the cases where sprintf was being used within htop, snprintf
      could have been used. This patch replaces all uses of sprintf with
      snprintf which makes sure that if a buffer is too small to hold the
      resulting string, the string is simply cut short instead of causing
      a buffer overflow which leads to undefined behaviour.
      
      `sizeof(variable)` was used in these cases, as opposed to `sizeof
      variable` which is my personal preference because `sizeof(variable)`
      was already used in one way or another in other parts of the code.
      2b5c1b4b