The following patch has been checked in to fix the -f parameter.
--- http_main.c Tue Jun 18 17:25:26 2002
+++ \projects\apache_1.3.25\src\main\http_main.c Tue Jun 04
22:53:16 2002
@@ -7260,7 +7260,7 @@
while ((c = getopt(argc, argv,
"D:C:c:Xd:f:vVlLz:Z:wiuStThk:n:W:")) != -1) {
#else /* !WIN32 */
- while ((c = getopt(argc, argv, "D:C:c:Xd:fF:vVlLesStTh")) != -1)
{
+ while ((c = getopt(argc, argv, "D:C:c:Xd:Ff:vVlLesStTh")) != -1)
{
#endif
char **new;
switch (c) {
Brad Nicholes
Senior Software Engineer
Novell, Inc., the leading provider of Net business solutions
http://www.novell.com
>>> [EMAIL PROTECTED] Tuesday, June 18, 2002 5:30:47 PM >>>
I don't think that it is just NetWare that is broken. Any other
platform besides WIN32 that compiles this same code is also broken. I
can certainly do what you suggested but I think there will be other
platforms affected as well.
Brad
Brad Nicholes
Senior Software Engineer
Novell, Inc., the leading provider of Net business solutions
http://www.novell.com
>>> [EMAIL PROTECTED] Tuesday, June 18, 2002 5:28:24 PM >>>
At 06:15 PM 6/18/2002, you wrote:
>-1 for 1.3.26. The -f parameter appears to be broken at least on
>NetWare. The addition of the 'F' (uppercase) parameter in the
argument
>list of getopt() looks like it is conflicting with the 'f'
(lowercase)
>parameter. When I remove the 'F' parameter, -f starts working again.
>I'm still looking at it but it looks like the 'F' (uppercase) stole
the
>':' from the 'f' (lowercase) parameter.
Since that's new... and since you create the Netware bundles, I'd
suggest
you author the patch, put in up on apply_to_1.3.26 and build your
binaries
as such. Does that make sense?
Sounds like the same damned typo introduced by dirkx on Win32, I'm
sorry
I didn't grep netware as well :-(
Bill