aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_db.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_db.c')
-rwxr-xr-xapps/app_db.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/app_db.c b/apps/app_db.c
index 1ca43e869..aec99cf6e 100755
--- a/apps/app_db.c
+++ b/apps/app_db.c
@@ -20,6 +20,7 @@
#include <asterisk/pbx.h>
#include <asterisk/module.h>
#include <asterisk/pbx.h>
+#include <asterisk/astdb.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
@@ -76,7 +77,7 @@ deltree_exec (struct ast_channel *chan, void *data)
}
memcpy (argv, data, arglen + 1);
- if (strchr (argv, '/'))
+ if (strchr (argv, '/')) {
{
family = strsep (&argv, "/");
keytree = strsep (&argv, "\0");
@@ -88,7 +89,7 @@ deltree_exec (struct ast_channel *chan, void *data)
if (!strlen (keytree))
keytree = 0;
}
- else
+ } else
{
family = argv;
keytree = 0;