X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=ssl%2Fssl_locl.h;h=1f8b0ea88c976d682c1e0b0224d26b00e0942b6d;hp=864e21a18e30f074b11666c2902e48f36edb15dc;hb=94af0cd7f3a8130bbc23feb743b176a74eec7e10;hpb=98ab57644f44d2d83595c2d0f69138a284d6096b diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 864e21a18e..1f8b0ea88c 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -229,13 +229,6 @@ *((c)++)=(unsigned char)(((l)>> 8)&0xff), \ *((c)++)=(unsigned char)(((l) )&0xff)) -# define n2l6(c,l) (l =((BN_ULLONG)(*((c)++)))<<40, \ - l|=((BN_ULLONG)(*((c)++)))<<32, \ - l|=((BN_ULLONG)(*((c)++)))<<24, \ - l|=((BN_ULLONG)(*((c)++)))<<16, \ - l|=((BN_ULLONG)(*((c)++)))<< 8, \ - l|=((BN_ULLONG)(*((c)++)))) - /* NOTE - c is not incremented as per l2c */ # define l2cn(l1,l2,c,n) { \ c+=n; \