Fix re-definition of keyex enum
This commit is contained in:
@@ -47,7 +47,7 @@
|
||||
|
||||
struct pk_client_params {
|
||||
enum krb5_pk_type type;
|
||||
enum { USE_RSA, USE_DH, USE_ECDH } keyex;
|
||||
enum keyex_enum keyex;
|
||||
union {
|
||||
struct {
|
||||
BIGNUM *public_key;
|
||||
|
@@ -389,9 +389,11 @@ enum krb5_pk_type {
|
||||
PKINIT_27 = 2
|
||||
};
|
||||
|
||||
enum keyex_enum { USE_RSA, USE_DH, USE_ECDH };
|
||||
|
||||
struct krb5_pk_init_ctx_data {
|
||||
struct krb5_pk_identity *id;
|
||||
enum { USE_RSA, USE_DH, USE_ECDH } keyex;
|
||||
enum keyex_enum keyex;
|
||||
union {
|
||||
DH *dh;
|
||||
void *eckey;
|
||||
|
Reference in New Issue
Block a user