diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-11-20 01:19:07 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-11-20 01:19:07 (GMT) |
commit | 5c3629009461cc14b5fe4fda58691330fddf3c02 (patch) | |
tree | 8b4946058235d43c29ee764059770383e1a8231e /plugins/check_by_ssh.c | |
parent | 95e405673ecc1af365bdb5657d22dcd542fd2348 (diff) | |
download | monitoring-plugins-5c3629009461cc14b5fe4fda58691330fddf3c02.tar.gz |
in short options, t no no argument
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@217 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_by_ssh.c')
-rw-r--r-- | plugins/check_by_ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_by_ssh.c b/plugins/check_by_ssh.c index 93f1ead..59e4178 100644 --- a/plugins/check_by_ssh.c +++ b/plugins/check_by_ssh.c | |||
@@ -209,10 +209,10 @@ process_arguments (int argc, char **argv) | |||
209 | while (1) { | 209 | while (1) { |
210 | #ifdef HAVE_GETOPT_H | 210 | #ifdef HAVE_GETOPT_H |
211 | c = | 211 | c = |
212 | getopt_long (argc, argv, "+?Vvhft46H:O:p:i:u:l:C:n:s:", long_options, | 212 | getopt_long (argc, argv, "Vvh46ft:H:O:p:i:u:l:C:n:s:", long_options, |
213 | &option_index); | 213 | &option_index); |
214 | #else | 214 | #else |
215 | c = getopt (argc, argv, "+?Vvhft46H:O:p:i:u:l:C:n:s:"); | 215 | c = getopt (argc, argv, "Vvh46ft:H:O:p:i:u:l:C:n:s:"); |
216 | #endif | 216 | #endif |
217 | 217 | ||
218 | if (c == -1 || c == EOF) | 218 | if (c == -1 || c == EOF) |