repo: ngircd action: commit revision: path_from: revision_from: cb6279f1020e1818ab3a379f36724ecef7c8d2d0: path_to: revision_to:
commit cb6279f1020e1818ab3a379f36724ecef7c8d2d0 Author: Alexander BartonDate: Sat Dec 27 13:09:24 2003 +0000 Added IDENT option to version string. diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c
--- a/src/ngircd/ngircd.c +++ b/src/ngircd/ngircd.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: ngircd.c,v 1.78 2003/12/26 15:55:07 alex Exp $"; +static char UNUSED id[] = "$Id: ngircd.c,v 1.79 2003/12/27 13:09:24 alex Exp $"; #include "imp.h" #include@@ -377,6 +377,10 @@ NGIRCd_VersionAddition( VOID ) if( txt[0] ) strcat( txt, "+" ); strcat( txt, "RENDEZVOUS" ); #endif +#ifdef IDENTAUTH + if( txt[0] ) strcat( txt, "+" ); + strcat( txt, "IDENT" ); +#endif #ifdef DEBUG if( txt[0] ) strcat( txt, "+" ); strcat( txt, "DEBUG" );
-----END OF PAGE-----