X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Flog.c;h=544f2430b8b2144609e4a91c043ee90c4f001a17;hb=da8da1ce7df27231cb91b278ad1eda1721b7168d;hp=18fe1edac318de9fe0851b84a6c2d847839ca7aa;hpb=20a2ffef88a426c0531eb6d08718e6ca19bdacc8;p=ngircd.git diff --git a/src/ngircd/log.c b/src/ngircd/log.c index 18fe1eda..544f2430 100644 --- 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.25 2002/03/27 20:53:30 alex Exp $ + * $Id: log.c,v 1.26 2002/03/27 21:03:09 alex Exp $ * * log.c: Logging-Funktionen */ @@ -219,7 +219,7 @@ LOCAL VOID Wall_ServerNotice( CHAR *Msg ) c = Client_First( ); while( c ) { - if(( Client_Conn( c ) > NONE ) && ( Client_HasMode( c, 's' ))) IRC_WriteStrClient( c, "NOTICE :%s", Msg ); + if(( Client_Conn( c ) > NONE ) && ( Client_HasMode( c, 's' ))) IRC_WriteStrClient( c, "NOTICE %s :%s", Client_ThisServer( ), Msg ); c = Client_Next( c ); } } /* Wall_ServerNotice */