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:
parent
01d6ce3fb6
commit
93bac6a31e
10
src/log.c
10
src/log.c
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue