diff options
| author | Alexander Barton <alex@barton.de> | 2003-12-27 13:09:24 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2003-12-27 13:09:24 +0000 |
| commit | cb6279f1020e1818ab3a379f36724ecef7c8d2d0 (patch) | |
| tree | b425287620036816bc01478f9d7e34cf568a5ed7 /src | |
| parent | b79b315dd4b5fcefb781d1e1e012f71e578a5346 (diff) | |
| download | ngircd-cb6279f1020e1818ab3a379f36724ecef7c8d2d0.tar.gz ngircd-cb6279f1020e1818ab3a379f36724ecef7c8d2d0.zip | |
Added IDENT option to version string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/ngircd.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c index 8bea98ae..c3a6db8e 100644 --- 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 <assert.h> @@ -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" ); |