diff options
| author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-11-09 03:39:35 +0000 |
|---|---|---|
| committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-11-09 03:39:35 +0000 |
| commit | 731426203c88b76255492ad69138e6ecc7b0c7b5 (patch) | |
| tree | 5e3c65a22a5a5d051ca72f5e17a73784e6032041 /plugins/check_pgsql.c | |
| parent | d3af657e468065dcbae73e6a7289f7090822bacd (diff) | |
| download | monitoring-plugins-731426203c88b76255492ad69138e6ecc7b0c7b5.tar.gz | |
define and use usage3 where second part of message is a an int/char
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@178 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_pgsql.c')
| -rw-r--r-- | plugins/check_pgsql.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index a2fd90e0..98c504fa 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
| @@ -266,17 +266,17 @@ process_arguments (int argc, char **argv) | |||
| 266 | 266 | ||
| 267 | while (1) { | 267 | while (1) { |
| 268 | #ifdef HAVE_GETOPT_H | 268 | #ifdef HAVE_GETOPT_H |
| 269 | c = getopt_long (argc, argv, "+?hVt:c:w:H:P:d:l:p:a:", | 269 | c = getopt_long (argc, argv, "hVt:c:w:H:P:d:l:p:a:", |
| 270 | long_options, &option_index); | 270 | long_options, &option_index); |
| 271 | #else | 271 | #else |
| 272 | c = getopt (argc, argv, "+?hVt:c:w:H:P:d:l:p:a:"); | 272 | c = getopt (argc, argv, "hVt:c:w:H:P:d:l:p:a:"); |
| 273 | #endif | 273 | #endif |
| 274 | if (c == EOF) | 274 | if (c == EOF) |
| 275 | break; | 275 | break; |
| 276 | 276 | ||
| 277 | switch (c) { | 277 | switch (c) { |
| 278 | case '?': /* usage */ | 278 | case '?': /* usage */ |
| 279 | usage2 ("Unknown argument", optarg); | 279 | usage3 ("Unknown argument", optopt); |
| 280 | case 'h': /* help */ | 280 | case 'h': /* help */ |
| 281 | print_help (); | 281 | print_help (); |
| 282 | exit (STATE_OK); | 282 | exit (STATE_OK); |
