1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-08-07 14:23:45 +00:00

- Fixed up broken patch (once again -- *ARGL*) ...

This commit is contained in:
Alexander Barton 2003-01-08 20:32:17 +00:00
parent 72a4c0489f
commit 6b9ce1cb72

View File

@ -14,7 +14,7 @@
#include "portab.h"
static char UNUSED id[] = "$Id: irc-channel.c,v 1.21.2.3 2003/01/08 20:22:57 alex Exp $";
static char UNUSED id[] = "$Id: irc-channel.c,v 1.21.2.4 2003/01/08 20:32:17 alex Exp $";
#include "imp.h"
#include <assert.h>
@ -412,7 +412,7 @@ IRC_CHANINFO( CLIENT *Client, REQUEST *Req )
if( ! *ptr )
{
/* OK, there is no topic jet */
Channel_SetTopic( chan, arg_topic );
Channel_SetTopic( chan, Req->argv[arg_topic] );
IRC_WriteStrChannelPrefix( Client, chan, from, FALSE, "TOPIC %s :%s", Req->argv[0], Channel_Topic( chan ));
}
}