[openssh-commits] [openssh] 03/03: Sync missed case-insensitivity changes.

git+noreply at mindrot.org git+noreply at mindrot.org
Wed Jul 22 08:45:41 AEST 2026


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit 9e35b3845c85e02aef487a56d965434097ac52fe
Author: Darren Tucker <dtucker at dtucker.net>
AuthorDate: Wed Jul 22 08:44:39 2026 +1000

    Sync missed case-insensitivity changes.
---
 regress/cfgparse.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/regress/cfgparse.sh b/regress/cfgparse.sh
index 15417a7dc..c35095956 100644
--- a/regress/cfgparse.sh
+++ b/regress/cfgparse.sh
@@ -67,8 +67,8 @@ listenaddress ::1
 EOD
 
 ($SUDO ${SSHD} -T -f $OBJ/sshd_config.1 | \
- grep '^listenaddress ' >$OBJ/sshd_config.2 &&
- diff $OBJ/sshd_config.0 $OBJ/sshd_config.2) || \
+ grep -i '^ListenAddress ' >$OBJ/sshd_config.2 &&
+ diff -i $OBJ/sshd_config.0 $OBJ/sshd_config.2) || \
  fail "listenaddress order 2"
 
 # Check idempotence of MaxStartups
@@ -80,8 +80,8 @@ MaxStartups 1:2:3
 MaxStartups 8:16:32
 EOD
 ($SUDO ${SSHD} -T -f $OBJ/sshd_config.1 | \
- grep '^maxstartups ' >$OBJ/sshd_config.2 &&
- diff $OBJ/sshd_config.0 $OBJ/sshd_config.2) || \
+ grep -i '^maxstartups ' >$OBJ/sshd_config.2 &&
+ diff -i $OBJ/sshd_config.0 $OBJ/sshd_config.2) || \
  fail "maxstartups idempotence"
 
 # cleanup

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list