|
@@ -208,7 +208,6 @@ process_arguments (int argc, char **argv)
|
|
|
{
|
|
{
|
|
|
int c;
|
|
int c;
|
|
|
|
|
|
|
|
-#ifdef HAVE_GETOPT_H
|
|
|
|
|
int option_index = 0;
|
|
int option_index = 0;
|
|
|
static struct option long_options[] = {
|
|
static struct option long_options[] = {
|
|
|
{"hostname", required_argument, 0, 'H'},
|
|
{"hostname", required_argument, 0, 'H'},
|
|
@@ -224,7 +223,6 @@ process_arguments (int argc, char **argv)
|
|
|
{"help", no_argument, 0, 'h'},
|
|
{"help", no_argument, 0, 'h'},
|
|
|
{0, 0, 0, 0}
|
|
{0, 0, 0, 0}
|
|
|
};
|
|
};
|
|
|
-#endif
|
|
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
if (argc < 2)
|
|
|
return ERROR;
|
|
return ERROR;
|
|
@@ -251,13 +249,8 @@ process_arguments (int argc, char **argv)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
while (1) {
|
|
|
-#ifdef HAVE_GETOPT_H
|
|
|
|
|
- c =
|
|
|
|
|
- getopt_long (argc, argv, "+hVvH:P:F:u:p:t:r:e:", long_options,
|
|
|
|
|
|
|
+ c = getopt_long (argc, argv, "+hVvH:P:F:u:p:t:r:e:", long_options,
|
|
|
&option_index);
|
|
&option_index);
|
|
|
-#else
|
|
|
|
|
- c = getopt (argc, argv, "+hVvH:P:F:u:p:t:r:e:");
|
|
|
|
|
-#endif
|
|
|
|
|
|
|
|
|
|
if (c == -1 || c == EOF || c == 1)
|
|
if (c == -1 || c == EOF || c == 1)
|
|
|
break;
|
|
break;
|
|
@@ -340,12 +333,7 @@ void
|
|
|
print_usage (void)
|
|
print_usage (void)
|
|
|
{
|
|
{
|
|
|
printf ("Usage:\n" " %s %s\n"
|
|
printf ("Usage:\n" " %s %s\n"
|
|
|
-#ifdef HAVE_GETOPT_H
|
|
|
|
|
" %s (-h | --help) for detailed help\n"
|
|
" %s (-h | --help) for detailed help\n"
|
|
|
" %s (-V | --version) for version information\n",
|
|
" %s (-V | --version) for version information\n",
|
|
|
-#else
|
|
|
|
|
- " %s -h for detailed help\n"
|
|
|
|
|
- " %s -V for version information\n",
|
|
|
|
|
-#endif
|
|
|
|
|
progname, OPTIONS, progname, progname);
|
|
progname, OPTIONS, progname, progname);
|
|
|
}
|
|
}
|