about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-03-25 17:13:07 +0000
committerAlexander Barton <alex@barton.de>2002-03-25 17:13:07 +0000
commit117c1df65ac2b66acc03fbc8c6b33c448adb611c (patch)
treee63b0941f3aaed51c2df8e0b6ebf42ef80a34639
parentd4fca86ae856bd241ff9ed89de77ce3a86b0cee5 (diff)
downloadngircd-117c1df65ac2b66acc03fbc8c6b33c448adb611c.tar.gz
ngircd-117c1df65ac2b66acc03fbc8c6b33c448adb611c.zip
- bei Get_Prefix() fehlte das "LOCAL".
-rw-r--r--src/ngircd/irc-write.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngircd/irc-write.c b/src/ngircd/irc-write.c
index 1292e43c..b2af957f 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 );