The following reply was made to PR config/928; it has been noted by GNATS.
From: Marc Slemko <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: config/928: httpd cannot start, apparently because it is unable
to open the scoreboard file (fwd)
Date: Sun, 3 Aug 1997 12:54:37 -0600 (MDT)
---------- Forwarded message ----------
Date: Sun, 03 Aug 1997 15:57:38 +0200
From: Jesper Holck <[EMAIL PROTECTED]>
To: Marc Slemko <[EMAIL PROTECTED]>
Subject: Re: config/928: httpd cannot start, apparently because it is unable
to open the scoreboard file
[...]
Marc Slemko wrote:
> Try removing the O_BINARY| from it, ie. leave it something like:
>
> scoreboard_fd = popenf(p, scoreboard_fname, O_CREAT|O_RDWR, 0644);
>
> if (scoreboard_fd == -1)
> {
> perror (scoreboard_fname);
> fprintf (stderr, "Cannot open scoreboard file:\n");
> exit (1);
> }
>
> Recompile then try starting the server again.
I tried to do this, but it did not seem to change anything. Still lots
of lines
on the screen, complaining about the scoreboard file.
Jesper Holck