summaryrefslogtreecommitdiff
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2006-01-23 12:19:16 +0000
committerOlle Johansson <oej@edvina.net>2006-01-23 12:19:16 +0000
commit77752fc8c531b234d895abb9c414cd5552985151 (patch)
tree13821d1309517da6e6b09696a96fbd012b8463b3 /apps/app_voicemail.c
parent72a2e892bc8c1fed22a9a69bed314f4b96070492 (diff)
Remove javadoc doxygen format...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8463 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_voicemail.c')
-rw-r--r--apps/app_voicemail.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 401b15a99..28c73e8ae 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -780,13 +780,13 @@ static int make_file(char *dest, int len, char *dir, int num)
return snprintf(dest, len, "%s/msg%04d", dir, num);
}
-/** basically mkdir -p $dest/$context/$ext/$mailbox
- * @dest String. base directory.
- * @context String. Ignored if is null or empty string.
- * @ext String. Ignored if is null or empty string.
- * @mailbox String. Ignored if is null or empty string.
- * @returns 0 on failure, 1 on success.
- * */
+/*! \brief basically mkdir -p $dest/$context/$ext/$mailbox
+ * \param dest String. base directory.
+ * \param context String. Ignored if is null or empty string.
+ * \param ext String. Ignored if is null or empty string.
+ * \param mailbox String. Ignored if is null or empty string.
+ * \return 0 on failure, 1 on success.
+ */
static int create_dirpath(char *dest, int len, char *context, char *ext, char *mailbox)
{
mode_t mode = VOICEMAIL_DIR_MODE;