1. 04 9月, 2015 1 次提交
  2. 03 9月, 2015 1 次提交
  3. 23 5月, 2015 1 次提交
    • R
      Fix the update target and remove duplicate file updates · 0f539dc1
      Richard Levitte 提交于
      We had updates of certain header files in both Makefile.org and the
      Makefile in the directory the header file lived in.  This is error
      prone and also sometimes generates slightly different results (usually
      just a comment that differs) depending on which way the update was
      done.
      
      This removes the file update targets from the top level Makefile, adds
      an update: target in all Makefiles and has it depend on the depend: or
      local_depend: targets, whichever is appropriate, so we don't get a
      double run through the whole file tree.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      0f539dc1
  4. 14 5月, 2015 2 次提交
  5. 06 5月, 2015 1 次提交
  6. 05 5月, 2015 1 次提交
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50
  7. 01 5月, 2015 1 次提交
  8. 29 4月, 2015 1 次提交
  9. 01 4月, 2015 2 次提交
  10. 22 2月, 2015 1 次提交
    • R
      Assume TERMIOS is default, remove TERMIO on all Linux. · 64e6bf64
      Richard Levitte 提交于
      The rationale for this move is that TERMIOS is default, supported by
      POSIX-1.2001, and most definitely on Linux.  For a few other systems,
      TERMIO may still be the termnial interface of preference, so we keep
      -DTERMIO on those in Configure.
      
      crypto/ui/ui_openssl.c is simplified in this regard, and will define
      TERMIOS for all systems except a select few exceptions.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      64e6bf64
  11. 07 2月, 2015 1 次提交
  12. 06 2月, 2015 1 次提交
  13. 24 1月, 2015 1 次提交
  14. 22 1月, 2015 2 次提交
  15. 13 1月, 2015 1 次提交
  16. 06 1月, 2015 1 次提交
  17. 31 12月, 2014 1 次提交
  18. 22 12月, 2014 1 次提交
  19. 19 12月, 2014 1 次提交
  20. 18 12月, 2014 1 次提交
  21. 08 12月, 2014 1 次提交
  22. 29 11月, 2014 1 次提交
  23. 25 9月, 2014 1 次提交
  24. 18 8月, 2014 1 次提交
  25. 09 8月, 2014 2 次提交
  26. 14 7月, 2014 1 次提交
  27. 12 2月, 2012 1 次提交
    • D
      PR: 2717 · fc7dae52
      Dr. Stephen Henson 提交于
      Submitted by: Tim Rice <tim@multitalents.net>
      
      Make compilation work on OpenServer 5.0.7
      fc7dae52
  28. 15 10月, 2011 1 次提交
  29. 27 1月, 2011 1 次提交
  30. 27 7月, 2010 1 次提交
  31. 10 3月, 2010 1 次提交
    • D
      PR: 2188 · b17bdc77
      Dr. Stephen Henson 提交于
      Submitted By: Jaroslav Imrich <jaroslav.imrich@disig.sk>
      
      Add "missing" functions to get and set prompt constructor.
      b17bdc77
  32. 05 10月, 2009 1 次提交
  33. 13 5月, 2009 1 次提交
  34. 16 2月, 2009 1 次提交
  35. 22 12月, 2008 1 次提交
  36. 22 11月, 2006 1 次提交