1. 12 2月, 2016 2 次提交
    • R
      Perl's chop / chomp considered bad, use a regexp instead · 9ba96fbb
      Richard Levitte 提交于
      Once upon a time, there was chop, which somply chopped off the last
      character of $_ or a given variable, and it was used to take off the
      EOL character (\n) of strings.
      
      ... but then, you had to check for the presence of such character.
      
      So came chomp, the better chop which checks for \n before chopping it
      off.  And this worked well, as long as Perl made internally sure that
      all EOLs were converted to \n.
      
      These days, though, there seems to be a mixture of perls, so lines
      from files in the "wrong" environment might have \r\n as EOL, or just
      \r (Mac OS, unless I'm misinformed).
      
      So it's time we went for the more generic variant and use s|\R$||, the
      better chomp which recognises all kinds of known EOLs and chops them
      off.
      
      A few chops were left alone, as they are use as surgical tools to
      remove one last slash or one last comma.
      
      NOTE: \R came with perl 5.10.0.  It means that from now on, our
      scripts will fail with any older version.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      9ba96fbb
    • R
      Don't add filename comment. · 24f0b104
      Rich Salz 提交于
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      24f0b104
  2. 29 1月, 2016 1 次提交
  3. 23 12月, 2015 2 次提交
  4. 05 11月, 2015 1 次提交
  5. 09 4月, 2015 1 次提交
    • R
      Have mkerr.pl treat already existing multiline string defs properly · 2cfdfe09
      Richard Levitte 提交于
      Since source reformat, we ended up with some error reason string
      definitions that spanned two lines.  That in itself is fine, but we
      sometimes edited them to provide better strings than what could be
      automatically determined from the reason macro, for example:
      
          {ERR_REASON(SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER),
           "Peer haven't sent GOST certificate, required for selected ciphersuite"},
      
      However, mkerr.pl didn't treat those two-line definitions right, and
      they ended up being retranslated to whatever the macro name would
      indicate, for example:
      
          {ERR_REASON(SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER),
           "No gost certificate sent by peer"},
      
      Clearly not what we wanted.  This change fixes this problem.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      2cfdfe09
  6. 06 3月, 2015 1 次提交
  7. 22 1月, 2015 1 次提交
  8. 08 12月, 2014 1 次提交
  9. 26 4月, 2014 1 次提交
    • G
      util/mkerr.pl: fix perl warning · 647f360e
      Geoff Thorpe 提交于
      Gets rid of this;
      
      defined(@array) is deprecated at ../util/mkerr.pl line 792.
              (Maybe you should just omit the defined()?)
      defined(@array) is deprecated at ../util/mkerr.pl line 800.
              (Maybe you should just omit the defined()?)
      Signed-off-by: NGeoff Thorpe <geoff@openssl.org>
      647f360e
  10. 22 10月, 2012 1 次提交
  11. 27 12月, 2011 1 次提交
  12. 20 5月, 2011 1 次提交
  13. 09 2月, 2011 1 次提交
  14. 26 1月, 2011 1 次提交
  15. 09 2月, 2010 1 次提交
  16. 15 4月, 2009 1 次提交
  17. 03 6月, 2008 1 次提交
  18. 17 4月, 2008 1 次提交
  19. 12 3月, 2008 1 次提交
  20. 06 4月, 2007 1 次提交
  21. 26 2月, 2007 1 次提交
  22. 22 11月, 2006 1 次提交
  23. 13 2月, 2006 1 次提交
  24. 09 1月, 2006 3 次提交
  25. 02 1月, 2006 2 次提交
  26. 09 5月, 2005 1 次提交
  27. 12 4月, 2005 1 次提交
  28. 18 1月, 2005 1 次提交
    • R
      Changes concering RFC 3820 (proxy certificates) integration: · a7201e9a
      Richard Levitte 提交于
       - Enforce that there should be no policy settings when the language
         is one of id-ppl-independent or id-ppl-inheritAll.
       - Add functionality to ssltest.c so that it can process proxy rights
         and check that they are set correctly.  Rights consist of ASCII
         letters, and the condition is a boolean expression that includes
         letters, parenthesis, &, | and ^.
       - Change the proxy certificate configurations so they get proxy
         rights that are understood by ssltest.c.
       - Add a script that tests proxy certificates with SSL operations.
      
      Other changes:
      
       - Change the copyright end year in mkerr.pl.
       - make update.
      a7201e9a
  29. 05 12月, 2004 1 次提交
  30. 04 4月, 2003 2 次提交
  31. 07 2月, 2003 1 次提交
  32. 14 2月, 2002 1 次提交
  33. 08 2月, 2002 1 次提交
  34. 25 1月, 2002 1 次提交