]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
ITS#8753 - Fix reference to ldaps to be StartTLS to accurately reflect what the test...
authorQuanah Gibson-Mount <quanah@openldap.org>
Thu, 30 Jul 2020 15:26:06 +0000 (15:26 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Thu, 30 Jul 2020 23:26:22 +0000 (23:26 +0000)
tests/scripts/test067-tls

index 7c2af6494a52bdb46140fe1a66f70aa9b0cfe448..d16b336463c139df45206ec8c721ecd39bfd0e8f 100755 (executable)
@@ -143,7 +143,7 @@ if test -n "$TLS_PEERKEY"; then
                -ZZ -b "" -s base -H $URIP1 '@extensibleObject' > $SEARCHOUT 2>&1
        RC=$?
        if test $RC != 0 ; then
-               echo "ldapsearch (ldaps) failed ($RC)!"
+               echo "ldapsearch (StartTLS) failed ($RC)!"
                test $KILLSERVERS != no && kill -HUP $KILLPIDS
                exit $RC
        else
@@ -160,7 +160,7 @@ if test -n "$TLS_PEERKEY_HASHED_FAIL"; then
                -ZZ -b "" -s base -H $URIP1 '@extensibleObject' > $SEARCHOUT 2>&1
        RC=$?
        if test $RC = 0 ; then
-               echo "ldapsearch (ldaps) succeeded when it should have failed($RC)!"
+               echo "ldapsearch (StartTLS) succeeded when it should have failed($RC)!"
                test $KILLSERVERS != no && kill -HUP $KILLPIDS
                exit 1
        else
@@ -177,7 +177,7 @@ if test -n "$TLS_PEERKEY_HASHED"; then
                -ZZ -b "" -s base -H $URIP1 '@extensibleObject' > $SEARCHOUT 2>&1
        RC=$?
        if test $RC != 0 ; then
-               echo "ldapsearch (ldaps) failed ($RC)!"
+               echo "ldapsearch (StartTLS) failed ($RC)!"
                test $KILLSERVERS != no && kill -HUP $KILLPIDS
                exit $RC
        else