From: Alexander Barton Date: Wed, 8 Jan 2003 23:09:04 +0000 (+0000) Subject: - Changed semantics of Client_SetAway() [from HEAD]. X-Git-Tag: rel-0-6-1~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d46fc6036c4b17831acd453f6ce54e301ae1d0a;p=ngircd - Changed semantics of Client_SetAway() [from HEAD]. --- diff --git a/src/ngircd/client.c b/src/ngircd/client.c index 3b265fd8..2a4bf3f3 100644 --- a/src/ngircd/client.c +++ b/src/ngircd/client.c @@ -17,7 +17,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: client.c,v 1.65.2.1 2002/12/22 23:42:28 alex Exp $"; +static char UNUSED id[] = "$Id: client.c,v 1.65.2.2 2003/01/08 23:09:04 alex Exp $"; #include "imp.h" #include @@ -394,24 +394,13 @@ Client_SetPassword( CLIENT *Client, CHAR *Pwd ) GLOBAL VOID Client_SetAway( CLIENT *Client, CHAR *Txt ) { - /* Von einem Client gelieferte AWAY-Nachricht */ - + /* Set AWAY reason of client */ + assert( Client != NULL ); + assert( Txt != NULL ); - if( Txt ) - { - /* Client AWAY setzen */ - strncpy( Client->away, Txt, CLIENT_AWAY_LEN - 1 ); - Client->away[CLIENT_AWAY_LEN - 1] = '\0'; - Client_ModeAdd( Client, 'a' ); - Log( LOG_DEBUG, "User \"%s\" is away: %s", Client_Mask( Client ), Txt ); - } - else - { - /* AWAY loeschen */ - Client_ModeDel( Client, 'a' ); - Log( LOG_DEBUG, "User \"%s\" is no longer away.", Client_Mask( Client )); - } + strlcpy( Client->away, Txt, sizeof( Client->away )); + Log( LOG_DEBUG, "User \"%s\" is away: %s", Client_Mask( Client ), Txt ); } /* Client_SetAway */