diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-10-02 21:25:54 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-10-02 21:25:54 +0000 |
commit | 27a11c4e152ba767388ab790a124b6da00d4fc7f (patch) | |
tree | a95ddc0acfc9119d19549ca0cc4366deee39f528 /src/tests/taf.cpp | |
parent | 79ee32aa24e31d5bb786d0c162ad8145cc7c1f35 (diff) | |
download | libbu++-27a11c4e152ba767388ab790a124b6da00d4fc7f.tar.gz libbu++-27a11c4e152ba767388ab790a124b6da00d4fc7f.tar.bz2 libbu++-27a11c4e152ba767388ab790a124b6da00d4fc7f.tar.xz libbu++-27a11c4e152ba767388ab790a124b6da00d4fc7f.zip |
Ok...now Bu::File doesn't set stupid permissions when it creates a new file...
Diffstat (limited to 'src/tests/taf.cpp')
-rw-r--r-- | src/tests/taf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/taf.cpp b/src/tests/taf.cpp index 859ecfc..45a6430 100644 --- a/src/tests/taf.cpp +++ b/src/tests/taf.cpp | |||
@@ -19,7 +19,7 @@ int main( int argc, char *argv[] ) | |||
19 | Bu::TafGroup *pGroup = tr.readGroup(); | 19 | Bu::TafGroup *pGroup = tr.readGroup(); |
20 | 20 | ||
21 | { | 21 | { |
22 | Bu::File fo("out.taf", Bu::File::Write ); | 22 | Bu::File fo("out.taf", Bu::File::Write|Bu::File::Create ); |
23 | Bu::TafWriter tw( fo ); | 23 | Bu::TafWriter tw( fo ); |
24 | tw.writeGroup( pGroup ); | 24 | tw.writeGroup( pGroup ); |
25 | } | 25 | } |
@@ -34,7 +34,7 @@ int main( int argc, char *argv[] ) | |||
34 | Bu::TafGroup *pGroup = tr.readGroup(); | 34 | Bu::TafGroup *pGroup = tr.readGroup(); |
35 | 35 | ||
36 | { | 36 | { |
37 | Bu::File fo( argv[2], Bu::File::Write ); | 37 | Bu::File fo( argv[2], Bu::File::Write|Bu::File::Create ); |
38 | Bu::TafWriter tw( fo ); | 38 | Bu::TafWriter tw( fo ); |
39 | tw.writeGroup( pGroup ); | 39 | tw.writeGroup( pGroup ); |
40 | } | 40 | } |