diff options
author | Matt Johnston <matt@ucc.asn.au> | 2004-08-18 09:14:30 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2004-08-18 09:14:30 +0000 |
commit | cc1860bc86ed84c41bfefce47e1ee7396413d095 (patch) | |
tree | d58e0b636f3f462494bde71d093747fafd4c23bd | |
parent | f3c8bb2bcea9e4b67376bbb00e33d619356e4d30 (diff) |
Stupid DSS hostkey bug fixed.
--HG--
extra : convert_revision : f8c94ac62bf0766d4b468c3ef88db8a11c5f75f4
-rw-r--r-- | svr-runopts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svr-runopts.c b/svr-runopts.c index 93b1ae3..82b6a30 100644 --- a/svr-runopts.c +++ b/svr-runopts.c @@ -302,7 +302,7 @@ static sign_key * loadhostkeys(const char * dsskeyfile, } #endif #ifdef DROPBEAR_DSS - type = DROPBEAR_SIGNKEY_RSA; + type = DROPBEAR_SIGNKEY_DSS; ret = readhostkey(dsskeyfile, hostkey, &type); if (ret == DROPBEAR_FAILURE) { disablekey(DROPBEAR_SIGNKEY_DSS, dsskeyfile); |