]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Use tabulator, not 8 spaces ...
authorAlexander Barton <alex@barton.de>
Mon, 21 Mar 2005 22:22:09 +0000 (22:22 +0000)
committerAlexander Barton <alex@barton.de>
Mon, 21 Mar 2005 22:22:09 +0000 (22:22 +0000)
src/ngircd/irc-login.c

index 3a7c127d4afc7f71a38077c9b362e8e39bc00b5e..68bb84d87d9ee4bca4e58b8bc96e5c67f66e07d2 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: irc-login.c,v 1.41 2005/03/19 18:43:48 fw Exp $";
+static char UNUSED id[] = "$Id: irc-login.c,v 1.42 2005/03/21 22:22:09 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -470,9 +470,9 @@ Hello_User( CLIENT *Client )
 
        /* Version and system type */
 #ifdef CVSDATE
-        strlcpy( ver, CVSDATE, sizeof( ver ));
-        strncpy( ver + 4, ver + 5, 2 );
-        strncpy( ver + 6, ver + 8, 3 );
+       strlcpy( ver, CVSDATE, sizeof( ver ));
+       strncpy( ver + 4, ver + 5, 2 );
+       strncpy( ver + 6, ver + 8, 3 );
        snprintf( vertxt, sizeof( vertxt ), "%s(%s)", PACKAGE_VERSION, ver );
        if( ! IRC_WriteStrClient( Client, RPL_YOURHOST_MSG, Client_ID( Client ), Client_ID( Client_ThisServer( )), vertxt, TARGET_CPU, TARGET_VENDOR, TARGET_OS )) return false;
 #else