8 Mar
2007
8 Mar
'07
4:33 p.m.
On 3/8/07, Nagy Gabor <ngaba@petra.hos.u-szeged.hu> wrote:
Hi!
_alpm_rmrf deletes only regular files and directories recursively. See line 316: 'if (S_ISREG(st.st_mode))' should be 'if (!S_ISDIR(st.st_mode))' or at least 'if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))' (<- I need this, because I started to implement my speed up ideas .-)
Please read 'submitting-patches' in the CVS root directory.