about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-09-03 18:55:03 +0000
committerAlexander Barton <alex@barton.de>2002-09-03 18:55:03 +0000
commit5aa9c8f44cdee19b40440a61bc212ca6351117ca (patch)
tree2e4a6242c961c4117d5ecce7c355cbea111dc941 /src
parente62ad97937bd834a450a5a162fc80d4e93d79741 (diff)
downloadngircd-5aa9c8f44cdee19b40440a61bc212ca6351117ca.tar.gz
ngircd-5aa9c8f44cdee19b40440a61bc212ca6351117ca.zip
- Flags von connecteten Servern werden nun gespeichert.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/irc-login.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ngircd/irc-login.c b/src/ngircd/irc-login.c
index c2d232cf..594ddcc3 100644
--- a/src/ngircd/irc-login.c
+++ b/src/ngircd/irc-login.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-login.c,v 1.17 2002/09/02 19:31:26 alex Exp $
+ * $Id: irc-login.c,v 1.18 2002/09/03 18:55:03 alex Exp $
  *
  * irc-login.c: Anmeldung und Abmeldung im IRC
  */
@@ -109,6 +109,8 @@ IRC_PASS( CLIENT *Client, REQUEST *Req )
 		}
 
 		Client_SetType( Client, CLIENT_GOTPASSSERVER );
+		Client_SetFlags( Client, flags );
+
 		return CONNECTED;
 	}
 	else if(( Client_Type( Client ) == CLIENT_UNKNOWN  ) || ( Client_Type( Client ) == CLIENT_UNKNOWNSERVER ))