[asterisk-commits] branch 1.2 r37143 - /branches/1.2/funcs/func_db.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Thu Jul 6 06:47:24 MST 2006
Author: tilghman
Date: Thu Jul 6 08:47:23 2006
New Revision: 37143
URL: http://svn.digium.com/view/asterisk?rev=37143&view=rev
Log:
Fix spelling/grammar (issue 7493)
Modified:
branches/1.2/funcs/func_db.c
Modified: branches/1.2/funcs/func_db.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/funcs/func_db.c?rev=37143&r1=37142&r2=37143&view=diff
==============================================================================
--- branches/1.2/funcs/func_db.c (original)
+++ branches/1.2/funcs/func_db.c Thu Jul 6 08:47:23 2006
@@ -108,14 +108,14 @@
#endif
struct ast_custom_function db_function = {
.name = "DB",
- .synopsis = "Read or Write from/to the Asterisk database",
+ .synopsis = "Read from or write to the Asterisk database",
.syntax = "DB(<family>/<key>)",
- .desc = "This function will read or write a value from/to the Asterisk database.\n"
- "DB(...) will read a value from the database, while DB(...)=value\n"
- "will write a value to the database. On a read, this function\n"
- "returns the value from the datase, or NULL if it does not exist.\n"
- "On a write, this function will always return NULL. Reading a database value\n"
- "will also set the variable DB_RESULT.\n",
+ .desc =
+"This function will read from or write a value to the Asterisk database. On a\n"
+"read, this function returns the corresponding value from the database, or blank\n"
+"if it does not exist. Reading a database value will also set the variable\n"
+"DB_RESULT. If you wish to find out if an entry exists, use the DB_EXISTS\n"
+"function.\n",
.read = function_db_read,
.write = function_db_write,
};
More information about the asterisk-commits
mailing list