repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 117c1df65ac2b66acc03fbc8c6b33c448adb611c:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 117c1df65ac2b66acc03fbc8c6b33c448adb611c
Author: Alexander Barton 
Date:   Mon Mar 25 17:13:07 2002 +0000

    - bei Get_Prefix() fehlte das "LOCAL".

diff --git a/src/ngircd/irc-write.c b/src/ngircd/irc-write.c
index 1292e43c232a79a038c0549421eb9a5540aa505a..
index ..b2af957fe50b6931516bc5c52d0356af735897cd 100644
--- a/src/ngircd/irc-write.c
+++ b/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 *Client, CLIENT *Prefix, BOOLEA
 } /* IRC_WriteStrRelatedPrefix */


-CHAR *Get_Prefix( CLIENT *Target, CLIENT *Client )
+LOCAL CHAR *Get_Prefix( CLIENT *Target, CLIENT *Client )
 {
 	assert( Target != NULL );
 	assert( Client != NULL );

-----END OF PAGE-----