[asterisk-commits] tilghman: branch 1.6.2 r208053 - in /branches/1.6.2: ./ res/res_realtime.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jul 22 11:52:18 CDT 2009
Author: tilghman
Date: Wed Jul 22 11:52:15 2009
New Revision: 208053
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=208053
Log:
Merged revisions 208052 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r208052 | tilghman | 2009-07-22 11:49:42 -0500 (Wed, 22 Jul 2009) | 7 lines
Clarify documentation on 'realtime update2' to show more than one condition.
(closes issue #15357)
Reported by: snuffy
Patches:
bug_fix_doc_update2.diff uploaded by snuffy (license 35)
(slightly modified by me)
........
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/res/res_realtime.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/res/res_realtime.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/res/res_realtime.c?view=diff&rev=208053&r1=208052&r2=208053
==============================================================================
--- branches/1.6.2/res/res_realtime.c (original)
+++ branches/1.6.2/res/res_realtime.c Wed Jul 22 11:52:15 2009
@@ -120,10 +120,12 @@
e->command = "realtime update2";
e->usage =
"Usage: realtime update2 <family> <colmatch> <valuematch> [... <colmatch5> <valuematch5>] NULL <colupdate> <newvalue>\n"
- " Update a single variable using the RealTime driver.\n"
- " You must supply a family name, a column to update on, a new value, column to match, and value to match.\n"
- " Ex: realtime update sipfriends name bobsphone port 4343\n"
- " will execute SQL as UPDATE sipfriends SET port = 4343 WHERE name = bobsphone\n";
+ " Update a single variable, requiring one or more fields to match using the\n"
+ " RealTime driver. You must supply a family name, a column to update, a new\n"
+ " value, and at least one column and value to match.\n"
+ " Ex: realtime update sipfriends name bobsphone ipaddr 127.0.0.1 NULL port 4343\n"
+ " will execute SQL as\n"
+ " UPDATE sipfriends SET port='4343' WHERE name='bobsphone' and ipaddr='127.0.0.1'\n";
return NULL;
case CLI_GENERATE:
return NULL;
More information about the asterisk-commits
mailing list