diff options
| author | Alexander Barton <alex@barton.de> | 2002-11-26 08:36:34 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-11-26 08:36:34 +0000 |
| commit | ad98f2c20d199f08714ed09fc3663516050cb4db (patch) | |
| tree | 48561181e795dbb4800fe3ca7ae0e778d2408560 /src | |
| parent | dc8ca3dfafae9dd63da43821b786481929d60b12 (diff) | |
| download | ngircd-ad98f2c20d199f08714ed09fc3663516050cb4db.tar.gz ngircd-ad98f2c20d199f08714ed09fc3663516050cb4db.zip | |
- Falsche Variable korrigiert ...
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/client.c b/src/ngircd/client.c index daa65b14..46736cc0 100644 --- a/src/ngircd/client.c +++ b/src/ngircd/client.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: client.c,v 1.62 2002/10/09 16:53:02 alex Exp $ + * $Id: client.c,v 1.63 2002/11/26 08:36:34 alex Exp $ * * client.c: Management aller Clients * @@ -375,7 +375,7 @@ Client_SetFlags( CLIENT *Client, CHAR *Flags ) assert( Flags != NULL ); strncpy( Client->flags, Flags, CLIENT_FLAGS_LEN - 1 ); - Client->modes[CLIENT_FLAGS_LEN - 1] = '\0'; + Client->flags[CLIENT_FLAGS_LEN - 1] = '\0'; } /* Client_SetFlags */ |