mirror of
https://github.com/osmarks/ngircd.git
synced 2025-01-05 21:30:29 +00:00
Added IDENT option to version string.
This commit is contained in:
parent
b79b315dd4
commit
cb6279f102
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#include "portab.h"
|
#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 "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -377,6 +377,10 @@ NGIRCd_VersionAddition( VOID )
|
|||||||
if( txt[0] ) strcat( txt, "+" );
|
if( txt[0] ) strcat( txt, "+" );
|
||||||
strcat( txt, "RENDEZVOUS" );
|
strcat( txt, "RENDEZVOUS" );
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef IDENTAUTH
|
||||||
|
if( txt[0] ) strcat( txt, "+" );
|
||||||
|
strcat( txt, "IDENT" );
|
||||||
|
#endif
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
if( txt[0] ) strcat( txt, "+" );
|
if( txt[0] ) strcat( txt, "+" );
|
||||||
strcat( txt, "DEBUG" );
|
strcat( txt, "DEBUG" );
|
||||||
|
Loading…
Reference in New Issue
Block a user