From 03cfd51f6a0ca63dc7105f84901558249b9937b2 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sat, 22 Feb 2003 22:20:54 +0000 Subject: [PATCH] Remove O_NOFOLLOW for now git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@349 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/findlib/create_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/findlib/create_file.c b/bacula/src/findlib/create_file.c index 2460370100..e8d7673069 100644 --- a/bacula/src/findlib/create_file.c +++ b/bacula/src/findlib/create_file.c @@ -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 */ } -- 2.39.5