1. 16 5月, 2000 5 次提交
  2. 14 5月, 2000 1 次提交
  3. 12 5月, 2000 1 次提交
  4. 09 5月, 2000 1 次提交
  5. 05 5月, 2000 1 次提交
  6. 04 5月, 2000 1 次提交
  7. 03 5月, 2000 2 次提交
  8. 02 5月, 2000 5 次提交
  9. 30 4月, 2000 1 次提交
  10. 27 4月, 2000 4 次提交
  11. 26 4月, 2000 2 次提交
  12. 25 4月, 2000 1 次提交
    • G
      This case in the "dso_unload" handlers should not be reported as an error - · ebbaebf7
      Geoff Thorpe 提交于
      if a DSO_load(NULL,...) operation fails, it will have to call DSO_free() on
      the DSO structure it created and that will filter through to this "unload"
      call.
      
      If the stack size is "< 1", then the library never actually loaded. To keep
      things clean higher up, I'll treat this as a vacuous case without an error.
      It makes the error stack easier to follow real world cases, and the error
      this ignores was only useful for catching bugs in internal code, not
      mismatched calls from applications (which should be handled in the generic
      DSO layer).
      ebbaebf7
  13. 20 4月, 2000 4 次提交
  14. 15 4月, 2000 3 次提交
  15. 13 4月, 2000 2 次提交
  16. 10 4月, 2000 1 次提交
  17. 09 4月, 2000 2 次提交
    • R
      "make update" · 7a807ad8
      Richard Levitte 提交于
      7a807ad8
    • R
      I've always wanted to make the CONF library more adaptable. Here's · d86b6915
      Richard Levitte 提交于
      the result.
      
      I have retained the old behavior of the CONF_* functions, and have
      added a more "object oriented" interface through NCONF_* functions
      (New CONF, you see :-)), working the same way as, for example, the
      BIO interface.  Really, the CONF_* are rewritten so they use the
      NCONF_* functions internally.
      
      In addition to that, I've split the old conf.c code into two files,
      conf_def.c and conf_api.c.  conf_def.c contains the default config
      object that reads a configuration file the standard OpenSSL way, as
      well as configuration file with Win32 registry file syntax (I'm not
      sure I got that one right).  conf_api.c provides an API to build other
      configuration file readers around (can you see a configuraion file in
      XML?  I can :-)).
      
      Finally, I've changed the name conf_lcl.h to conf_def.h, since it's
      made specifically for that "class" and none others.
      d86b6915
  18. 07 4月, 2000 3 次提交