summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-12-03 21:26:59 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-12-03 21:26:59 +0800
commit092a4d9a7edb88ccfc4867081fa7021290e51818 (patch)
treee69a0613c48b203dce43b29d0774da73555ded35
parentb3cab3ce3163083bbff9561a54369056793ab73d (diff)
Fix disabling DSS key
-rw-r--r--svr-runopts.c29
-rw-r--r--svr-session.c2
2 files changed, 9 insertions, 22 deletions
diff --git a/svr-runopts.c b/svr-runopts.c
index 9fbacf7..414cb45 100644
--- a/svr-runopts.c
+++ b/svr-runopts.c
@@ -475,8 +475,7 @@ void load_all_hostkeys() {
#endif
#ifdef DROPBEAR_DELAY_HOSTKEY
- if (svr_opts.delay_hostkey)
- {
+ if (svr_opts.delay_hostkey) {
disable_unset_keys = 0;
}
#endif
@@ -484,19 +483,15 @@ void load_all_hostkeys() {
#ifdef DROPBEAR_RSA
if (disable_unset_keys && !svr_opts.hostkey->rsakey) {
disablekey(DROPBEAR_SIGNKEY_RSA);
- }
- else
- {
+ } else {
any_keys = 1;
}
#endif
#ifdef DROPBEAR_DSS
if (disable_unset_keys && !svr_opts.hostkey->dsskey) {
- disablekey(DROPBEAR_SIGNKEY_RSA);
- }
- else
- {
+ disablekey(DROPBEAR_SIGNKEY_DSS);
+ } else {
any_keys = 1;
}
#endif
@@ -507,9 +502,7 @@ void load_all_hostkeys() {
if ((disable_unset_keys || ECDSA_DEFAULT_SIZE != 256)
&& !svr_opts.hostkey->ecckey256) {
disablekey(DROPBEAR_SIGNKEY_ECDSA_NISTP256);
- }
- else
- {
+ } else {
any_keys = 1;
}
#endif
@@ -518,9 +511,7 @@ void load_all_hostkeys() {
if ((disable_unset_keys || ECDSA_DEFAULT_SIZE != 384)
&& !svr_opts.hostkey->ecckey384) {
disablekey(DROPBEAR_SIGNKEY_ECDSA_NISTP384);
- }
- else
- {
+ } else {
any_keys = 1;
}
#endif
@@ -529,17 +520,13 @@ void load_all_hostkeys() {
if ((disable_unset_keys || ECDSA_DEFAULT_SIZE != 521)
&& !svr_opts.hostkey->ecckey521) {
disablekey(DROPBEAR_SIGNKEY_ECDSA_NISTP521);
- }
- else
- {
+ } else {
any_keys = 1;
}
#endif
#endif /* DROPBEAR_ECDSA */
- if (!any_keys)
- {
+ if (!any_keys) {
dropbear_exit("No hostkeys available");
}
-
}
diff --git a/svr-session.c b/svr-session.c
index 2852f29..e9fde24 100644
--- a/svr-session.c
+++ b/svr-session.c
@@ -142,7 +142,7 @@ void svr_dropbear_exit(int exitcode, const char* format, va_list param) {
if (!sessinitdone) {
/* before session init */
snprintf(fmtbuf, sizeof(fmtbuf),
- "Premature exit: %s", format);
+ "Early exit: %s", format);
} else if (ses.authstate.authdone) {
/* user has authenticated */
snprintf(fmtbuf, sizeof(fmtbuf),