repo: ngircd action: commit revision: path_from: revision_from: 856f24eb7e9cee7e028a91c698b63b1fec1aa6eb: path_to: revision_to:
commit 856f24eb7e9cee7e028a91c698b63b1fec1aa6eb Author: Alexander BartonDate: Wed Oct 9 13:15:18 2002 +0000 - Server-NOTICEs haben nun ein "Text-Prefix". diff --git a/src/ngircd/log.c b/src/ngircd/log.c
--- a/src/ngircd/log.c
+++ b/src/ngircd/log.c
@@ -9,7 +9,7 @@
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: log.c,v 1.38 2002/10/04 11:21:46 alex Exp $
+ * $Id: log.c,v 1.39 2002/10/09 13:15:18 alex Exp $
*
* log.c: Logging-Funktionen
*/
@@ -280,7 +280,7 @@ Wall_ServerNotice( CHAR *Msg )
c = Client_First( );
while( c )
{
- if(( Client_Conn( c ) > NONE ) && ( Client_HasMode( c, 's' ))) IRC_WriteStrClient( c, "NOTICE %s :%s", Client_ThisServer( ), Msg );
+ if(( Client_Conn( c ) > NONE ) && ( Client_HasMode( c, 's' ))) IRC_WriteStrClient( c, "NOTICE %s :%s%s", Client_ThisServer( ), NOTICE_TXTPREFIX, Msg );
c = Client_Next( c );
}
} /* Wall_ServerNotice */
-----END OF PAGE-----