diff options
Diffstat (limited to 'openssl/apps/ciphers.c')
-rw-r--r-- | openssl/apps/ciphers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/apps/ciphers.c b/openssl/apps/ciphers.c index 3d4c60db9..5f2b73970 100644 --- a/openssl/apps/ciphers.c +++ b/openssl/apps/ciphers.c @@ -196,7 +196,7 @@ int MAIN(int argc, char **argv) if (Verbose) { - unsigned long id = c->id; + unsigned long id = SSL_CIPHER_get_id(c); int id0 = (int)(id >> 24); int id1 = (int)((id >> 16) & 0xffL); int id2 = (int)((id >> 8) & 0xffL); |