summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-07 10:25:04 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-07 10:25:04 +0000
commit61cba56e6d0b478b03bfaf6593cd540d94514ec4 (patch)
tree14f2649d7eb410389a5e841b3452cb2e69b253f9 /src/util
parentfb2c8158993d513166798e881344b574ee4b8b93 (diff)
Removed MKDIRFLAGS from directory creation command. Default will be
to give a warning if the directory exists. git-svn-id: http://svn.cactuscode.org/flesh/trunk@882 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/util')
-rw-r--r--src/util/File.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/File.c b/src/util/File.c
index 8372bbd3..f59efd63 100644
--- a/src/util/File.c
+++ b/src/util/File.c
@@ -18,7 +18,7 @@ int CCTK_mkdir(char *dir)
command = (char *)malloc(1024*sizeof(char));
- sprintf(command, MKDIR MKDIRFLAGS " %s",dir);
+ sprintf(command, MKDIR " %s",dir);
message = (char *)malloc(1024*sizeof(char));
sprintf(message,"Creating directory: \"%s\"",command);