
ben at hyperreal
Apr 11, 1996, 6:57 AM
Views: 73
Permalink
|
|
cvs commit: apache/src mod_proxy.c
|
|
ben 96/04/11 06:57:39 Modified: src mod_proxy.c Log: The directory was not being closed. Fixed. Revision Changes Path 1.21 +3 -0 apache/src/mod_proxy.c Index: mod_proxy.c =================================================================== RCS file: /export/home/cvs/apache/src/mod_proxy.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C3 -r1.20 -r1.21 *** mod_proxy.c 1996/04/03 07:53:35 1.20 --- mod_proxy.c 1996/04/11 13:57:37 1.21 *************** *** 1485,1490 **** --- 1485,1493 ---- curblocks++; } } + + closedir(dir); + return nfiles; }
|