ap_php_optopt is set but never used

This commit is contained in:
Sascha Schumann 2002-05-04 17:27:18 +00:00
parent 1f09644ff7
commit 1ed3f698fe

View File

@ -13,7 +13,6 @@
char *ap_php_optarg;
int ap_php_optind = 1;
static int ap_php_opterr = 1;
static int ap_php_optopt;
static int
ap_php_optiserr(int argc, char * const *argv, int oint, const char *optstr,
@ -38,7 +37,6 @@ ap_php_optiserr(int argc, char * const *argv, int oint, const char *optstr,
break;
}
}
ap_php_optopt = argv[oint][optchr];
return('?');
}