Skip to content
  1. Mar 23, 2004
  2. Mar 17, 2004
  3. Mar 08, 2004
  4. Feb 08, 2004
  5. Jan 29, 2004
  6. Jan 23, 2004
  7. Jan 21, 2004
  8. Jan 19, 2004
  9. Jan 10, 2004
    • Richard Levitte's avatar
      Adding a slash between the directoryt and the file is a problem with · af6dab9b
      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>.
      af6dab9b
  10. Jan 08, 2004
  11. Jan 04, 2004
  12. Dec 27, 2003
  13. Dec 20, 2003
  14. Dec 11, 2003
  15. Dec 10, 2003
  16. Dec 06, 2003
  17. Dec 03, 2003
  18. Dec 02, 2003
    • Geoff Thorpe's avatar
      Incremental cleanups to bn_lib.c. · 2bfd2c74
      Geoff Thorpe authored
      - Add missing bn_check_top() calls and relocate some others
      - Use BN_is_zero() where appropriate
      - Remove assert()s that bn_check_top() is already covering
      - Simplify the code in places (esp. bn_expand2())
      - Only keep ambiguous zero handling if BN_STRICT isn't defined
      - Remove some white-space and make some other aesthetic tweaks
      2bfd2c74