Ticket #25428: patch-alpine-smkeys.c.diff
File patch-alpine-smkeys.c.diff, 437 bytes (added by todmorrison (Tod Morrison), 14 years ago) |
---|
-
re-alpine-2.01/pith/smkeys.c
old new 277 277 get_x509_subject_email(X509 *x) 278 278 { 279 279 char *result = NULL; 280 STACK *emails = X509_get1_email(x);280 STACK_OF(OPENSSL_STRING) *emails = X509_get1_email(x); 281 281 if (sk_num(emails) > 0) { 282 282 /* take the first one on the stack */ 283 283 result = cpystr(sk_value(emails, 0));