View | Details | Raw Unified | Return to bug 2898
Collapse All | Expand All

(-)a/auth2-pubkey.c (-2 / +1 lines)
Lines 193-199 userauth_pubkey(struct ssh *ssh) Link Here
193
		    ssh->compat)) == 0) {
193
		    ssh->compat)) == 0) {
194
			authenticated = 1;
194
			authenticated = 1;
195
		}
195
		}
196
		sshbuf_free(b);
197
		auth2_record_key(authctxt, authenticated, key);
196
		auth2_record_key(authctxt, authenticated, key);
198
	} else {
197
	} else {
199
		debug("%s: test pkalg %s pkblob %s%s%s",
198
		debug("%s: test pkalg %s pkblob %s%s%s",
Lines 237-242 done: Link Here
237
236
238
	sshauthopt_free(authopts);
237
	sshauthopt_free(authopts);
239
	sshkey_free(key);
238
	sshkey_free(key);
239
	sshbuf_free(b);
240
	free(userstyle);
240
	free(userstyle);
241
	free(pkalg);
241
	free(pkalg);
242
	free(pkblob);
242
	free(pkblob);
243
- 

Return to bug 2898