[NeoStats-Devel] [Commits] r2530 - trunk/src
| Newsgroups | gmane.comp.neostats.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: Mark
Date: Mon Apr 18 07:27:21 2005
New Revision: 2530
Modified:
trunk/src/ircd.c
Log:
fix error reports
Modified: trunk/src/ircd.c
==============================================================================
--- trunk/src/ircd.c (original)
+++ trunk/src/ircd.c Mon Apr 18 07:27:21 2005
@@ -1685,7 +1685,7 @@
int irc_sethost( const Bot *botptr, const char* host )
{
if( !irc_send_sethost ) {
- unsupported_cmd( "SETNAME" );
+ unsupported_cmd( "SETHOST" );
return NS_FAILURE;
}
irc_send_sethost( botptr->name, host );
@@ -1701,7 +1701,7 @@
int irc_setident( const Bot *botptr, const char* ident )
{
if( !irc_send_setident ) {
- unsupported_cmd( "SETNAME" );
+ unsupported_cmd( "SETIDENT" );
return NS_FAILURE;
}
irc_send_setident( botptr->name, ident );