summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--regress/addrmatch.sh3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ec760c64..5eda2f270 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120120427
2 - (dtucker) [regress/addrmatch.sh] skip tests when running on a non-ipv6
3 platform rather than exiting early, so that we still clean up and return
4 success or failure to test-exec.sh
5
120120426 620120426
2 - (djm) [auth-passwd.c] Handle crypt() returning NULL; from Paul Wouters 7 - (djm) [auth-passwd.c] Handle crypt() returning NULL; from Paul Wouters
3 via Niels 8 via Niels
diff --git a/regress/addrmatch.sh b/regress/addrmatch.sh
index 23ddd65ce..5102317df 100644
--- a/regress/addrmatch.sh
+++ b/regress/addrmatch.sh
@@ -33,13 +33,14 @@ run_trial user 19.0.0.1 somehost no "deny, no match"
33run_trial user 10.255.255.254 somehost yes "permit, list middle" 33run_trial user 10.255.255.254 somehost yes "permit, list middle"
34run_trial user 192.168.30.1 192.168.0.1 no "deny, faked IP in hostname" 34run_trial user 192.168.30.1 192.168.0.1 no "deny, faked IP in hostname"
35run_trial user 1.1.1.1 somehost.example.com yes "permit, bare IP4 address" 35run_trial user 1.1.1.1 somehost.example.com yes "permit, bare IP4 address"
36test "$TEST_SSH_IPV6" = "no" && exit 36if test "$TEST_SSH_IPV6" != "no"; then
37run_trial user ::1 somehost.example.com yes "permit, bare IP6 address" 37run_trial user ::1 somehost.example.com yes "permit, bare IP6 address"
38run_trial user ::2 somehost.exaple.com no "deny IPv6" 38run_trial user ::2 somehost.exaple.com no "deny IPv6"
39run_trial user ::3 somehost no "deny IP6 negated" 39run_trial user ::3 somehost no "deny IP6 negated"
40run_trial user ::4 somehost no "deny, IP6 no match" 40run_trial user ::4 somehost no "deny, IP6 no match"
41run_trial user 2000::1 somehost yes "permit, IP6 network" 41run_trial user 2000::1 somehost yes "permit, IP6 network"
42run_trial user 2001::1 somehost no "deny, IP6 network" 42run_trial user 2001::1 somehost no "deny, IP6 network"
43fi
43 44
44cp $OBJ/sshd_proxy_bak $OBJ/sshd_proxy 45cp $OBJ/sshd_proxy_bak $OBJ/sshd_proxy
45rm $OBJ/sshd_proxy_bak 46rm $OBJ/sshd_proxy_bak