projects
/
cumulus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87c6a5e
)
Really fix the umask problem.
author
Michael Vrable
<mvrable@cs.ucsd.edu>
Fri, 20 Jul 2007 17:17:18 +0000
(10:17 -0700)
committer
Michael Vrable
<mvrable@turin.ucsd.edu>
Fri, 20 Jul 2007 17:17:18 +0000
(10:17 -0700)
The fix in
bf947741ac8f65e74d594a1e14e94d90320b403e
didn't entirely work.
This should be better.
store.cc
patch
|
blob
|
history
diff --git
a/store.cc
b/store.cc
index
8f2c8b3
..
77ab867
100644
(file)
--- a/
store.cc
+++ b/
store.cc
@@
-50,7
+50,7
@@
Tarfile::Tarfile(const string &path, const string &segment)
: size(0),
segment_name(segment)
{
- real_fd = open(path.c_str(), O_WRONLY | O_CREAT, 06
00
);
+ real_fd = open(path.c_str(), O_WRONLY | O_CREAT, 06
66
);
if (real_fd < 0)
throw IOException("Error opening output file");