summaryrefslogtreecommitdiffstats
path: root/plugins/check_ssh.c
diff options
context:
space:
mode:
authorJeremy T. Bouse <undrgrid@users.sourceforge.net>2003-06-30 18:52:38 (GMT)
committerJeremy T. Bouse <undrgrid@users.sourceforge.net>2003-06-30 18:52:38 (GMT)
commit97634d8fc6bba849f771eda24106d88104e703b9 (patch)
tree88bc233fc2e2361c46c3b68a57a4f4fa44456e6c /plugins/check_ssh.c
parent2527943a443e2551e722ed6b8f1bc86f76dc823a (diff)
downloadmonitoring-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_ssh.c')
-rw-r--r--plugins/check_ssh.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c
index 421fc01..fba3a86 100644
--- a/plugins/check_ssh.c
+++ b/plugins/check_ssh.c
@@ -110,7 +110,11 @@ process_arguments (int argc, char **argv)
110 address_family = AF_INET; 110 address_family = AF_INET;
111 break; 111 break;
112 case '6': 112 case '6':
113#ifdef USE_IPV6
113 address_family = AF_INET6; 114 address_family = AF_INET6;
115#else
116 usage ("IPv6 support not available\n");
117#endif
114 break; 118 break;
115 case 'H': /* host */ 119 case 'H': /* host */
116 if (is_host (optarg) == FALSE) 120 if (is_host (optarg) == FALSE)