diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-11-25 23:08:33 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-11-25 23:08:33 +0800 |
commit | c5e36f8e3cd390b77ce43f58f01b3d3a9111d989 (patch) | |
tree | 0924f43a4cf93bd6211e36117441165fdfb71e75 /cli-agentfwd.c | |
parent | 5a85c4b91b8f602f325fbdea2adc697c50c1630f (diff) |
Fix some warnings
Diffstat (limited to 'cli-agentfwd.c')
-rw-r--r-- | cli-agentfwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli-agentfwd.c b/cli-agentfwd.c index f166121..4ec555b 100644 --- a/cli-agentfwd.c +++ b/cli-agentfwd.c @@ -201,7 +201,7 @@ static void agent_get_key_list(m_list * ret_list) num = buf_getint(inbuf); for (i = 0; i < num; i++) { sign_key * pubkey = NULL; - int key_type = DROPBEAR_SIGNKEY_ANY; + enum signkey_type key_type = DROPBEAR_SIGNKEY_ANY; buffer * key_buf; /* each public key is encoded as a string */ |