drop_duplicates: copy full BindMount struct

At least

  t->ignore = f->ignore;

is missing here. Just copy the full struct to be sure.
This commit is contained in:
Ansgar Burchardt 2014-07-27 16:32:13 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent 0f625d0b87
commit e2d7c1a075
1 changed files with 1 additions and 2 deletions

View File

@ -124,8 +124,7 @@ static void drop_duplicates(BindMount *m, unsigned *n) {
if (previous && path_equal(f->path, previous->path))
continue;
t->path = f->path;
t->mode = f->mode;
*t = *f;
previous = t;