Mercurial > dropbear
comparison session.h @ 1155:80b45616e1f3
fix build when ENABLE_CLI_INTERACT_AUTH is disabled
The session.h defines clientsession.cipher_none_after_auth only when
ENABLE_CLI_INTERACT_AUTH is defined, but cli-session.c will always
try to set that member. export cipher_none_after_auth all the time.
author | Mike Frysinger <vapier@gentoo.org> |
---|---|
date | Wed, 21 Oct 2015 22:39:31 +0800 |
parents | 43a8ea69b24c |
children | fb58cf341951 |
comparison
equal
deleted
inserted
replaced
1154:b1fabf797bd3 | 1155:80b45616e1f3 |
---|---|
291 int auth_interact_failed; /* flag whether interactive auth can still | 291 int auth_interact_failed; /* flag whether interactive auth can still |
292 be used */ | 292 be used */ |
293 int interact_request_received; /* flag whether we've received an | 293 int interact_request_received; /* flag whether we've received an |
294 info request from the server for | 294 info request from the server for |
295 interactive auth.*/ | 295 interactive auth.*/ |
296 | 296 #endif |
297 int cipher_none_after_auth; /* Set to 1 if the user requested "none" | 297 int cipher_none_after_auth; /* Set to 1 if the user requested "none" |
298 auth */ | 298 auth */ |
299 #endif | |
300 sign_key *lastprivkey; | 299 sign_key *lastprivkey; |
301 | 300 |
302 int retval; /* What the command exit status was - we emulate it */ | 301 int retval; /* What the command exit status was - we emulate it */ |
303 #if 0 | 302 #if 0 |
304 TODO | 303 TODO |