From: Kern Sibbald Date: Sat, 12 Jul 2014 10:37:15 +0000 (+0200) Subject: Tweak type 26 for bug #2071 X-Git-Tag: Release-7.0.5~42 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=70a3eae40c6b3c30ccb57bf631f294592fd26cf5;p=bacula%2Fbacula Tweak type 26 for bug #2071 --- diff --git a/bacula/src/findlib/file_create.c b/bacula/src/findlib/file_create.c index 791a76532f..0abb200718 100644 --- a/bacula/src/findlib/file_create.c +++ b/bacula/src/findlib/file_create.c @@ -332,6 +332,10 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) return CF_CREATED; } /* End inner switch */ + case FT_REPARSE: + case FT_JUNCTION: + bfd->reparse_point = true; + /* Fall through wanted */ case FT_DIRBEGIN: case FT_DIREND: Dmsg2(200, "Make dir mode=%o dir=%s\n", new_mode, attr->ofname);