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_ldap.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_ldap.c')
| -rw-r--r-- | plugins/check_ldap.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index 1b2e2826..333dae41 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c | |||
| @@ -462,11 +462,7 @@ check_ldap_config_wrapper process_arguments(int argc, char **argv) { | |||
| 462 | } | 462 | } |
| 463 | break; | 463 | break; |
| 464 | case '6': | 464 | case '6': |
| 465 | #ifdef USE_IPV6 | ||
| 466 | address_family = AF_INET6; | 465 | address_family = AF_INET6; |
| 467 | #else | ||
| 468 | usage(_("IPv6 support not available\n")); | ||
| 469 | #endif | ||
| 470 | break; | 466 | break; |
| 471 | case output_format_index: { | 467 | case output_format_index: { |
| 472 | parsed_output_format parser = mp_parse_output_format(optarg); | 468 | parsed_output_format parser = mp_parse_output_format(optarg); |
