[NeoStats-Devel] [Commits] r2670 - trunk/modules/textserv
| Newsgroups | gmane.comp.neostats.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: DNB
Date: Sat Jul 16 00:08:24 2005
New Revision: 2670
Modified:
trunk/modules/textserv/main.c
Log:
fix careless use of incorrect variable :(
Modified: trunk/modules/textserv/main.c
==============================================================================
--- trunk/modules/textserv/main.c (original)
+++ trunk/modules/textserv/main.c Sat Jul 16 00:08:24 2005
@@ -587,7 +587,7 @@
hnode_t *hn;
bce = (botchanentry *)data;
- hn = hash_lookup( tshash, bce->channel );
+ hn = hash_lookup( tshash, bce->name );
if( hn != NULL )
{
db =( ( dbbot * )hnode_get( hn ) );