minor fix?

This commit is contained in:
Axel Kittenberger 2010-08-03 14:26:57 +00:00
parent 55b966b43b
commit bc2fe74cc1
2 changed files with 4 additions and 6 deletions

View File

@ -1365,13 +1365,12 @@ remove_dirwatch(const struct global_options *opts,
dir_watches->data[dw].dirname = NULL;
// remove a possible tackle
// (this dir is on the delay list)
if (opts->delay > 0 && dir_watches->data[dw].tackled) {
// (this dir is on the to do/delay list)
if (tackles->len > 0 && dir_watches->data[dw].tackled) {
int i;
for(i = 0; i < tackles->len; i++) {
if (tackles->data[i] == dw) {
// move the list up.
// TODO move own logic
memmove(tackles->data + i, tackles->data + i + 1, (tackles->len - i - 1) * sizeof(int));
tackles->len--;
break;

View File

@ -6,12 +6,11 @@ CON="\E[47;34m"
COFF="\033[0m"
WORKSOURCE=$(mktemp -d)
WORKTARGET=$(mktemp -d)
WORKSOURCE="/tmp/src"
WORKTARGET="/tmp/trg"
PIDFILE=$(mktemp)
LOGFILE=$(mktemp)
echo -e "$CON* populating the filesystem$COFF"
mkdir -p "${WORKSOURCE}"/a/a
echo 'test' > "${WORKSOURCE}"/a/a/file