comparison cli-agentfwd.c @ 864:30ab30e46452

Fix some warnings
author Matt Johnston <matt@ucc.asn.au>
date Mon, 25 Nov 2013 23:08:33 +0800
parents 220f55d540ae
children 0bb16232e7c4
comparison
equal deleted inserted replaced
863:14342451d3df 864:30ab30e46452
199 } 199 }
200 200
201 num = buf_getint(inbuf); 201 num = buf_getint(inbuf);
202 for (i = 0; i < num; i++) { 202 for (i = 0; i < num; i++) {
203 sign_key * pubkey = NULL; 203 sign_key * pubkey = NULL;
204 int key_type = DROPBEAR_SIGNKEY_ANY; 204 enum signkey_type key_type = DROPBEAR_SIGNKEY_ANY;
205 buffer * key_buf; 205 buffer * key_buf;
206 206
207 /* each public key is encoded as a string */ 207 /* each public key is encoded as a string */
208 key_buf = buf_getstringbuf(inbuf); 208 key_buf = buf_getstringbuf(inbuf);
209 pubkey = new_sign_key(); 209 pubkey = new_sign_key();