]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- Changed semantics of Client_SetAway().
authorAlexander Barton <alex@barton.de>
Wed, 8 Jan 2003 22:03:21 +0000 (22:03 +0000)
committerAlexander Barton <alex@barton.de>
Wed, 8 Jan 2003 22:03:21 +0000 (22:03 +0000)
src/ngircd/client.c

index 9d736d49540ec141a2b02cee16c0faaf0e1cc64c..bea728b92ab996c1fa913fe6545f0ed01dc11d4c 100644 (file)
@@ -17,7 +17,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: client.c,v 1.71 2002/12/26 17:14:48 alex Exp $";
+static char UNUSED id[] = "$Id: client.c,v 1.72 2003/01/08 22:03:21 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -387,23 +387,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 */
-               strlcpy( Client->away, Txt, sizeof( Client->away ));
-               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 */