Skip to content
  1. Mar 12, 2004
  2. Mar 08, 2004
    • Dr. Stephen Henson's avatar
      00b9c1be
    • Richard Levitte's avatar
      Incorporate the following changes from 0.9.8-dev: · 051bb5c4
      Richard Levitte authored
      2003-04-04 17:10  levitte
      
      	* apps/: apps.c (1.72), apps.h (1.56), ca.c (1.135), x509.c (1.82):
      	  Convert save_serial() to work like save_index(), and add a
      	  rotate_serial() that works like rotate_index().
      
      2003-04-03 20:07  levitte
      
      	* apps/: apps.c (1.69), ca.c (1.130): Conditionalise all debug
      	  strings.
      
      2003-04-03 18:33  levitte
      
      	* apps/apps.c (1.68), apps/apps.h (1.55), apps/ca.c (1.129),
      	  apps/ocsp.c (1.31), apps/openssl.cnf (1.24), apps/x509.c (1.80),
      	  CHANGES (1.1139): Make it possible to have multiple active
      	  certificates with the same subject.
      051bb5c4
  3. Mar 05, 2004
  4. Mar 04, 2004
  5. Mar 02, 2004
  6. Mar 01, 2004
  7. Feb 27, 2004
  8. Feb 26, 2004
  9. Feb 19, 2004
  10. Feb 08, 2004
  11. Feb 07, 2004
  12. Feb 01, 2004
  13. Jan 29, 2004
  14. Jan 28, 2004
  15. Jan 27, 2004
  16. Jan 26, 2004
  17. Jan 22, 2004
  18. Jan 21, 2004
  19. Jan 10, 2004
    • Richard Levitte's avatar
      Adding a slash between the directoryt and the file is a problem with · 8ba5c63d
      Richard Levitte authored
      VMS.  The C RTL can handle it well if the "directory" is a logical
      name with no colon, therefore ending being 'logname/file'.  However,
      if the given logical names actually has a colon, or if you use a full
      VMS-syntax directory, you end up with 'logname:/file' or
      'dev:[dir1.dir2]/file', and that isn't handled in any good way.
      
      So, on VMS, we need to check if the directory string ends with a
      separator (one of ':', ']' or '>' (< and > can be used instead [ and
      ])), and handle that by not inserting anything between the directory
      spec and the file name.  In all other cases, it's assumed the
      directory spec is a logical name, so we need to place a colon between
      it and the file.
      
      Notified by Kevin Greaney <kevin.greaney@hp.com>.
      8ba5c63d