summaryrefslogtreecommitdiff
path: root/libs/ardour/utils.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2006-06-20 20:14:31 +0000
committerTaybin Rutkin <taybin@taybin.com>2006-06-20 20:14:31 +0000
commit78889b0958c72e8b52e297e27e2c1ed2bf522602 (patch)
tree28b9b39df652e20be888a66e1e2c3a650a0fd3b6 /libs/ardour/utils.cc
parentbe362ae53c1d191e23d8a084d0327044bce4544c (diff)
Merged revisions 588:623 from tag/presndfile.
Minor scons fixes. CoreAudioSource updates. git-svn-id: svn://localhost/ardour2/trunk@625 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/utils.cc')
-rw-r--r--libs/ardour/utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc
index 15d0c6be81..2d9fccf9d7 100644
--- a/libs/ardour/utils.cc
+++ b/libs/ardour/utils.cc
@@ -177,7 +177,7 @@ tokenize_fullpath (string fullpath, string& path, string& name)
int
touch_file (string path)
{
- int fd = open (path.c_str(), O_RDONLY|O_CREAT);
+ int fd = open (path.c_str(), O_RDWR|O_CREAT, 0660);
if (fd >= 0) {
close (fd);
return 0;