summaryrefslogtreecommitdiff
path: root/apps/app_dictate.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-06-22 04:35:12 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-06-22 04:35:12 +0000
commita1bc8231365c9bdea0d3881a8cd056f6abecb07b (patch)
tree45f02eef0ac120e193459b71f73a7b62b7db8784 /apps/app_dictate.c
parent0b98b2a659dca13c8b7fe4a6682ede8e2ae110b7 (diff)
Issue 9990 - New API ast_mkdir, which creates parent directories as necessary (and is faster than an outcall to mkdir -p)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@71040 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_dictate.c')
-rw-r--r--apps/app_dictate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_dictate.c b/apps/app_dictate.c
index c501b3f78..61252433d 100644
--- a/apps/app_dictate.c
+++ b/apps/app_dictate.c
@@ -139,7 +139,7 @@ static int dictate_exec(struct ast_channel *chan, void *data)
ast_copy_string(filein, filename, sizeof(filein));
filename = "";
}
- mkdir(base, 0755);
+ ast_mkdir(base, 0755);
len = strlen(base) + strlen(filein) + 2;
if (!path || len > maxlen) {
path = alloca(len);