]> git.sur5r.net Git - bacula/bacula/commitdiff
Remove O_NOFOLLOW for now
authorKern Sibbald <kern@sibbald.com>
Sat, 22 Feb 2003 22:20:54 +0000 (22:20 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 22 Feb 2003 22:20:54 +0000 (22:20 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@349 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/findlib/create_file.c

index 24603701003ba87b94f84ef5082e81b492c97020..e8d76730693022338b15a19d2da210056be19f6b 100644 (file)
@@ -156,7 +156,7 @@ int create_file(void *jcr, char *fname, char *ofile, char *lname,
       }
 
       Dmsg1(100, "Create file %s\n", ofile);
-      mode =  O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_NOFOLLOW;
+      mode =  O_WRONLY | O_CREAT | O_TRUNC | O_BINARY; /*  O_NOFOLLOW; */
       if (IS_CTG(statp->st_mode)) {
         mode |= O_CTG;               /* set contiguous bit if needed */
       }