diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-09-10 12:28:24 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-09-10 12:28:24 +1000 |
commit | 8ccb7392e7ea45d2997afdfa981a450c7db85211 (patch) | |
tree | 5dd0769c5ec6a54fffb0e77a670bdc4e84046a6c /ssh-agent.c | |
parent | 6af914a15c0c33e8b5bab5ca61919b8562ff1db9 (diff) |
- (dtucker) [kex.h key.c packet.h ssh-agent.c ssh.c] A few more ECC ifdefs
for missing headers and compiler warnings.
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 8f19fb157..45c8e37a3 100644 --- a/ssh-agent.c +++ b/ssh-agent.c | |||
@@ -466,11 +466,12 @@ process_add_identity(SocketEntry *e, int version) | |||
466 | Idtab *tab = idtab_lookup(version); | 466 | Idtab *tab = idtab_lookup(version); |
467 | Identity *id; | 467 | Identity *id; |
468 | int type, success = 0, death = 0, confirm = 0; | 468 | int type, success = 0, death = 0, confirm = 0; |
469 | char *type_name, *comment, *curve; | 469 | char *type_name, *comment; |
470 | Key *k = NULL; | 470 | Key *k = NULL; |
471 | #ifdef OPENSSL_HAS_ECC | 471 | #ifdef OPENSSL_HAS_ECC |
472 | BIGNUM *exponent; | 472 | BIGNUM *exponent; |
473 | EC_POINT *q; | 473 | EC_POINT *q; |
474 | int *curve; | ||
474 | #endif | 475 | #endif |
475 | u_char *cert; | 476 | u_char *cert; |
476 | u_int len; | 477 | u_int len; |