aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_db.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-07 22:01:22 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-07 22:01:22 +0000
commite61f71745fd8e4682e77917b4db4aeff62072e2c (patch)
treec9f258c1b931ee2e10d3e288b17ec6961440eaf1 /apps/app_db.c
parent25be1f3bc599f4752aab163844ebe75d9a471a42 (diff)
application doc update
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6992 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_db.c')
-rwxr-xr-xapps/app_db.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/apps/app_db.c b/apps/app_db.c
index c0e83969d..60d25f0e6 100755
--- a/apps/app_db.c
+++ b/apps/app_db.c
@@ -48,24 +48,23 @@ static char *tdesc = "Database access functions for Asterisk extension logic";
static char *g_descrip =
" DBget(varname=family/key[|options]): Retrieves a value from the Asterisk\n"
- "database and stores it in the given variable. Always returns 0. \n"
- " The option string may contain zero or the following character:\n"
- " 'j' -- jump to +101 priority if the file requested family/key isn't found.\n"
+ "database and stores it in the given variable.\n"
+ " The option string may contain the following character:\n"
+ " 'j' -- jump to +101 priority if the requested family/key isn't found.\n"
" This application sets the following channel variable upon completion:\n"
- " DBGETSTATUS The status of the attempt to add a queue member as a text string, one of\n"
+ " DBGETSTATUS The status of the attempt as a text string, one of\n"
" FOUND | NOTFOUND \n";
static char *p_descrip =
" DBput(family/key=value): Stores the given value in the Asterisk\n"
- "database. Always returns 0.\n";
+ "database.\n";
static char *d_descrip =
- " DBdel(family/key): Deletes a key from the Asterisk database. Always\n"
- "returns 0.\n";
+ " DBdel(family/key): Deletes a key from the Asterisk database.\n";
static char *dt_descrip =
" DBdeltree(family[/keytree]): Deletes a family or keytree from the Asterisk\n"
- "database. Always returns 0.\n";
+ "database.\n";
static char *g_app = "DBget";
static char *p_app = "DBput";