summaryrefslogtreecommitdiff
path: root/include/asterisk/astdb.h
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2011-06-09 22:32:56 +0000
committerTerry Wilson <twilson@digium.com>2011-06-09 22:32:56 +0000
commit5eb1d79d403a0a9727800e1d02aa3be747f790b7 (patch)
tree33f3755fce735f3b9ed35c02c57988cb66198c49 /include/asterisk/astdb.h
parent53ef4bfc1642df5e3b63c425f386c5a35d10bdd8 (diff)
Merged revisions 322865 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r322865 | twilson | 2011-06-09 15:29:20 -0700 (Thu, 09 Jun 2011) | 4 lines Correct ast_db_deltree documentation ast_db_deltree returns -1 on error, otherwise the number of deletions ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@322866 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/astdb.h')
-rw-r--r--include/asterisk/astdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/astdb.h b/include/asterisk/astdb.h
index 4c1fa5890..cfbebbc30 100644
--- a/include/asterisk/astdb.h
+++ b/include/asterisk/astdb.h
@@ -47,8 +47,8 @@ int ast_db_del(const char *family, const char *key);
* only keytree is NULL, all entries within the family will be purged.
* It is an error for keytree to have a value when family is NULL.
*
- * \retval 0 Entries were deleted
* \retval -1 An error occurred
+ * \retval >= 0 Number of records deleted
*/
int ast_db_deltree(const char *family, const char *keytree);