diff options
author | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-06-30 18:52:38 (GMT) |
---|---|---|
committer | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-06-30 18:52:38 (GMT) |
commit | 97634d8fc6bba849f771eda24106d88104e703b9 (patch) | |
tree | 88bc233fc2e2361c46c3b68a57a4f4fa44456e6c /plugins/check_tcp.c | |
parent | 2527943a443e2551e722ed6b8f1bc86f76dc823a (diff) | |
download | monitoring-plugins-97634d8fc6bba849f771eda24106d88104e703b9.tar.gz |
Corrections to get code to compile on systems without IPv6 support
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@574 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r-- | plugins/check_tcp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index b8af1a1..ce4fd31 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
@@ -449,7 +449,11 @@ process_arguments (int argc, char **argv) | |||
449 | address_family = AF_INET; | 449 | address_family = AF_INET; |
450 | break; | 450 | break; |
451 | case '6': | 451 | case '6': |
452 | #ifdef USE_IPV6 | ||
452 | address_family = AF_INET6; | 453 | address_family = AF_INET6; |
454 | #else | ||
455 | usage ("IPv6 support not available\n"); | ||
456 | #endif | ||
453 | break; | 457 | break; |
454 | case 'H': /* hostname */ | 458 | case 'H': /* hostname */ |
455 | if (is_host (optarg) == FALSE) | 459 | if (is_host (optarg) == FALSE) |