]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/ngircd.c
- Test auf POSIX Regular-Expression-Funktionen eingebaut.
[ngircd-alex.git] / src / ngircd / ngircd.c
index 7becdda81b7f179fc30abc66d55c2130fe9c5136..ecc9d332a1a77675b5889497366e68c4c8b3d955 100644 (file)
@@ -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: ngircd.c,v 1.40 2002/03/29 23:34:18 alex Exp $
+ * $Id: ngircd.c,v 1.44 2002/04/24 13:33:56 alex Exp $
  *
  * ngircd.c: Hier beginnt alles ;-)
  */
@@ -21,6 +21,7 @@
 #include <assert.h>
 #include <errno.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <signal.h>
 #include <string.h>
 #include <unistd.h>
@@ -145,7 +146,7 @@ GLOBAL int main( int argc, const char *argv[] )
 #endif
                                if( argv[i][n] == 'f' )
                                {
-                                       if(( ! argv[i][n+i] ) && ( i + 1 < argc ))
+                                       if(( ! argv[i][n + 1] ) && ( i + 1 < argc ))
                                        {
                                                /* Ok, danach kommt ein Leerzeichen */
                                                strncpy( NGIRCd_ConfFile, argv[i + 1], FNAME_LEN - 1 );
@@ -310,6 +311,10 @@ GLOBAL CHAR *NGIRCd_VersionAddition( VOID )
        if( txt[0] ) strcat( txt, "+" );
        strcat( txt, "SYSLOG" );
 #endif
+#ifdef REGEX
+       if( txt[0] ) strcat( txt, "+" );
+       strcat( txt, "REGEX" );
+#endif
 #ifdef STRICT_RFC
        if( txt[0] ) strcat( txt, "+" );
        strcat( txt, "RFC" );
@@ -435,7 +440,8 @@ LOCAL VOID Initialize_Listen_Ports( VOID )
 LOCAL VOID Show_Version( VOID )
 {
        puts( NGIRCd_Version( ));
-       puts( "Copyright (c)2001,2002 by Alexander Barton (alex@barton.de).\n" );
+       puts( "Copyright (c)2001,2002 by Alexander Barton (<alex@barton.de>)." );
+       puts( "Homepage: <http://arthur.ath.cx/~alex/ngircd/>\n" );
        puts( "This is free software; see the source for copying conditions. There is NO" );
        puts( "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." );
 } /* Show_Version */