Print this page
4853 illumos-gate is not lint-clean when built with openssl 1.0

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/openssl/libsunw_crypto/cast/c_skey.c
          +++ new/usr/src/lib/openssl/libsunw_crypto/cast/c_skey.c
↓ open down ↓ 50 lines elided ↑ open up ↑
  51   51   * SUCH DAMAGE.
  52   52   *
  53   53   * The licence and distribution terms for any publically available version or
  54   54   * derivative of this code cannot be changed.  i.e. this code cannot simply be
  55   55   * copied and put under another distribution licence
  56   56   * [including the GNU Public Licence.]
  57   57   */
  58   58  
  59   59  #include <openssl/crypto.h>
  60   60  #include <openssl/cast.h>
  61      -#include "cast_lcl.h"
  62      -#include "cast_s.h"
       61 +#include <cast_lcl.h>
       62 +#include <cast_s.h>
  63   63  
  64   64  #define CAST_exp(l,A,a,n) \
  65   65          A[n/4]=l; \
  66   66          a[n+3]=(l    )&0xff; \
  67   67          a[n+2]=(l>> 8)&0xff; \
  68   68          a[n+1]=(l>>16)&0xff; \
  69   69          a[n+0]=(l>>24)&0xff;
  70   70  
  71   71  #define S4 CAST_S_table4
  72   72  #define S5 CAST_S_table5
↓ open down ↓ 100 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX