diff options
author | Lorenz <12514511+RincewindsHat@users.noreply.github.com> | 2022-11-07 17:48:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 17:48:28 +0100 |
commit | 4a5ddd201119260028db6a4f27027d72aa9a160a (patch) | |
tree | ec8d01d90064f59cc82dd6c60ec7d9b6c3abc236 /.github/workflows/test.yml | |
parent | 8708fd21a66656e297f1a7e6b2b679d932845ef1 (diff) | |
download | monitoring-plugins-4a5ddd201119260028db6a4f27027d72aa9a160a.tar.gz |
Check curl detect ipv6 (#1809)
* If server_address is an IPv6 address surround it with brackets
* If the message is too short, we should not have an underflow
* Add simple conditional test case available if IPv6 is
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2785a41..80d49f7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: ${{ matrix.distro }} \ /bin/sh -c '${{ matrix.prepare }} && \ tools/setup && \ - ./configure --enable-libtap --with-ipv6=no && \ + ./configure --enable-libtap --with-ipv6=no && \ make && \ make test' docker container prune -f |