diff options
| author | Alexander Barton <alex@barton.de> | 2002-11-29 17:36:50 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-11-29 17:36:50 +0000 |
| commit | a1437f1ad040dfc1c196ec01430d9ad35da81f97 (patch) | |
| tree | 6bcf84e0738af9bc48e088fff9047b214d1a063f | |
| parent | 1d8cb34bc88c8891a1d6a7c3a78ff78909e9f8bf (diff) | |
| download | ngircd-a1437f1ad040dfc1c196ec01430d9ad35da81f97.tar.gz ngircd-a1437f1ad040dfc1c196ec01430d9ad35da81f97.zip | |
- der Server verschickt keine "NOTICE AUTH"'s mehr.
| -rw-r--r-- | src/ngircd/conn.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 4eeec13a..22fbaaee 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -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: conn.c,v 1.99 2002/11/29 13:13:42 alex Exp $ + * $Id: conn.c,v 1.100 2002/11/29 17:36:50 alex Exp $ * * connect.h: Verwaltung aller Netz-Verbindungen ("connections") */ @@ -1124,9 +1124,6 @@ New_Connection( INT Sock ) if( s ) { /* Sub-Prozess wurde asyncron gestartet */ -#ifndef STRICT_RFC - Conn_WriteStr( idx, "NOTICE AUTH :%sLooking up your hostname ...", NOTICE_TXTPREFIX ); -#endif My_Connections[idx].res_stat = s; } @@ -1667,10 +1664,6 @@ Read_Resolver_Result( INT r_fd ) assert( c != NULL ); strcpy( My_Connections[i].host, result ); Client_SetHostname( c, result ); - -#ifndef STRICT_RFC - Conn_WriteStr( i, "NOTICE AUTH :%sGot your hostname.", NOTICE_TXTPREFIX ); -#endif } else { |