blob: f50472a1ed0759fa4b8fc417c663970b8e546154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- ./mcop/mcoputils.cc.orig 2006-01-19 10:16:08.000000000 -0600
+++ ./mcop/mcoputils.cc 2006-09-19 17:07:50.000000000 -0500
@@ -47,7 +47,13 @@
result = lstat(tmp_dir, &stat_buf);
if ((result == -1) && (errno == ENOENT))
{
- return 1;
+ result = mkdir(tmp_dir, 0700);
+ if (result == -1)
+ {
+ arts_warning("Error: Can not create directory \"%s\".\n", tmp_dir);
+ return 1;
+ }
+ result = stat(tmp_dir, &stat_buf);
}
if ((result == -1) || (!S_ISDIR(stat_buf.st_mode)))
{
|