commit 117c1df65ac2b66acc03fbc8c6b33c448adb611c from: Alexander Barton date: Mon Mar 25 17:13:07 2002 UTC - bei Get_Prefix() fehlte das "LOCAL". commit - d4fca86ae856bd241ff9ed89de77ce3a86b0cee5 commit + 117c1df65ac2b66acc03fbc8c6b33c448adb611c blob - 1292e43c232a79a038c0549421eb9a5540aa505a blob + b2af957fe50b6931516bc5c52d0356af735897cd --- src/ngircd/irc-write.c +++ src/ngircd/irc-write.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: irc-write.c,v 1.2 2002/03/12 14:37:52 alex Exp $ + * $Id: irc-write.c,v 1.3 2002/03/25 17:13:07 alex Exp $ * * irc-write.c: IRC-Texte und Befehle ueber Netzwerk versenden */ @@ -28,7 +28,7 @@ #include "irc-write.h" -CHAR *Get_Prefix( CLIENT *Target, CLIENT *Client ); +LOCAL CHAR *Get_Prefix( CLIENT *Target, CLIENT *Client ); GLOBAL BOOLEAN IRC_WriteStrClient( CLIENT *Client, CHAR *Format, ... ) @@ -258,7 +258,7 @@ GLOBAL BOOLEAN IRC_WriteStrRelatedPrefix( CLIENT *Clie } /* IRC_WriteStrRelatedPrefix */ -CHAR *Get_Prefix( CLIENT *Target, CLIENT *Client ) +LOCAL CHAR *Get_Prefix( CLIENT *Target, CLIENT *Client ) { assert( Target != NULL ); assert( Client != NULL );