diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2026-02-06 12:59:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-06 12:59:58 +0100 |
| commit | 0f0865c910096c95594ac09929708e84934e46df (patch) | |
| tree | ab43775280c322435d4c33a58a7994fa6a13917b /plugins/check_ssh.c | |
| parent | cef40299a93233f043f5b0821a9ad2c69dd612f7 (diff) | |
| download | monitoring-plugins-0f0865c910096c95594ac09929708e84934e46df.tar.gz | |
Make IPv6 unconditional (#2219)
This commits removes the detection of IPv6 availability.
The IPv6 code in the plugins is used unconditionally now.
Diffstat (limited to 'plugins/check_ssh.c')
| -rw-r--r-- | plugins/check_ssh.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c index 84b70a53..911f6787 100644 --- a/plugins/check_ssh.c +++ b/plugins/check_ssh.c | |||
| @@ -173,11 +173,7 @@ process_arguments_wrapper process_arguments(int argc, char **argv) { | |||
| 173 | address_family = AF_INET; | 173 | address_family = AF_INET; |
| 174 | break; | 174 | break; |
| 175 | case '6': | 175 | case '6': |
| 176 | #ifdef USE_IPV6 | ||
| 177 | address_family = AF_INET6; | 176 | address_family = AF_INET6; |
| 178 | #else | ||
| 179 | usage4(_("IPv6 support not available")); | ||
| 180 | #endif | ||
| 181 | break; | 177 | break; |
| 182 | case 'r': /* remote version */ | 178 | case 'r': /* remote version */ |
| 183 | result.config.remote_version = optarg; | 179 | result.config.remote_version = optarg; |
