|
Description
|
PKCS#11 engine source code has big number of cstyle warnings:
$ ls usr/src/common/openssl/crypto/engine/hw_pk11*.[ch]
usr/src/common/openssl/crypto/engine/hw_pk11.c
usr/src/common/openssl/crypto/engine/hw_pk11_err.c
usr/src/common/openssl/crypto/engine/hw_pk11_err.h
usr/src/common/openssl/crypto/engine/hw_pk11_pub.c
$ cstyle usr/src/common/openssl/crypto/engine/hw_pk11*.[ch] | wc -l
1176
While we try to adhere to OpenSSL C-style (i.e. trying to look similar as the rest
of OpenSSL source code) the code should be as C-style clean as possible, as the overlap between the 2 styles permits.
|