From: Manni H. <man...@us...> - 2007-12-01 22:22:17
|
Update of /cvsroot/popfile/engine/POPFile In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8618/POPFile Modified Files: History.pm Log Message: Fix nasty little bug that would put release_slot into an endless loop Index: History.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/History.pm,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** History.pm 27 Nov 2007 00:05:07 -0000 1.43 --- History.pm 1 Dec 2007 22:22:20 -0000 1.44 *************** *** 320,323 **** --- 320,328 ---- $depth--; } + else { + # We either aren't allowed to delete the + # directory or it wasn't empty + last; + } } } |