rename loop variable

2 nested loops with the same variable 'i',
line 219 and line 309
This commit is contained in:
Francois Perrad 2015-12-31 18:47:51 +01:00 committed by Matt Johnston
parent f3a6dd139c
commit 8f96b8908e

View File

@ -306,8 +306,8 @@ void main_noinetd() {
#endif #endif
/* make sure we close sockets */ /* make sure we close sockets */
for (i = 0; i < listensockcount; i++) { for (j = 0; j < listensockcount; j++) {
m_close(listensocks[i]); m_close(listensocks[j]);
} }
m_close(childpipe[0]); m_close(childpipe[0]);