From b44ee0c998fb4c5f3c3281f2398af5ce42840b6f Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Thu, 5 Mar 2015 18:39:20 -0800 Subject: unbreak hostkeys test for w/ SSH1 case --- regress/unittests/hostkeys/test_iterate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regress/unittests/hostkeys/test_iterate.c b/regress/unittests/hostkeys/test_iterate.c index fc095ea49..5ea576c27 100644 --- a/regress/unittests/hostkeys/test_iterate.c +++ b/regress/unittests/hostkeys/test_iterate.c @@ -141,8 +141,10 @@ prepare_expected(struct expected *expected, size_t n) for (i = 0; i < n; i++) { if (expected[i].key_file == NULL) continue; +#ifndef WITH_SSH1 if (expected[i].l.keytype == KEY_RSA1) continue; +#endif ASSERT_INT_EQ(sshkey_load_public( test_data_file(expected[i].key_file), &expected[i].l.key, NULL), 0); -- cgit v1.2.3