[asterisk-commits] russell: branch 1.6.1 r157040 - in /branches/1.6.1: ./ channels/chan_console.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Nov 14 22:09:14 CST 2008
Author: russell
Date: Fri Nov 14 22:09:13 2008
New Revision: 157040
URL: http://svn.digium.com/view/asterisk?view=rev&rev=157040
Log:
Merged revisions 157039 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r157039 | russell | 2008-11-14 22:08:42 -0600 (Fri, 14 Nov 2008) | 3 lines
Use the new case insensitive hash function for console interfaces. The comparison
function is case insensitive.
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/channels/chan_console.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/channels/chan_console.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/channels/chan_console.c?view=diff&rev=157040&r1=157039&r2=157040
==============================================================================
--- branches/1.6.1/channels/chan_console.c (original)
+++ branches/1.6.1/channels/chan_console.c Fri Nov 14 22:09:13 2008
@@ -1425,7 +1425,7 @@
{
const struct console_pvt *pvt = obj;
- return ast_str_hash(pvt->name);
+ return ast_str_case_hash(pvt->name);
}
static int pvt_cmp_cb(void *obj, void *arg, int flags)
More information about the asterisk-commits
mailing list