Fix unused var in log.c

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2523 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Stefan Bühler 2009-06-11 09:38:54 +00:00
parent 01d6ce3fb6
commit 93bac6a31e
1 changed files with 6 additions and 4 deletions

View File

@ -63,7 +63,6 @@ int open_logfile_or_pipe(server *srv, const char* logfile) {
int to_log_fds[2];
pid_t pid;
int i;
if (pipe(to_log_fds)) {
log_error_write(srv, __FILE__, __LINE__, "ss", "pipe failed: ", strerror(errno));
@ -88,9 +87,12 @@ int open_logfile_or_pipe(server *srv, const char* logfile) {
close(to_log_fds[1]);
#ifndef FD_CLOEXEC
/* we don't need the client socket */
for (i = 3; i < 256; i++) {
close(i);
{
int i;
/* we don't need the client socket */
for (i = 3; i < 256; i++) {
close(i);
}
}
#endif