Displaying 2 results from an estimated 2 matches for "is_dot_dir".
Did you mean:
is_dos_dir
2005 Sep 27
1
--delete and --dirs
rsync-2.6.6 manpage says:
--delete
[...]
This option has no effect unless directory recursion is enabled.
True. In fact, I noted that --delete doesn't delete anything if --dirs
is used rather than --recursive.
Is there any reason for --delete not to delete when used with --dirs?
Is there a way to get rsync to actually delete files on the receiving
end when using
2007 Sep 22
0
rsync build on IA64 using icc
...^
flist.c(861): remark #810: conversion from "unsigned short" to "unsigned char" may lose significant bits
file->flags = flags;
^
flist.c(976): remark #810: conversion from "int" to "char" may lose significant bits
char is_dot_dir = fbuf[ol-1] == '.' && (ol == 1 || fbuf[ol-2] == '/');
^
flist.c(1015): remark #981: operands are evaluated in unspecified order
rsyserr(FERROR, errno, "opendir %s failed", full_fname(fbuf));...