comparison src/client.c @ 228:1ad2602f57db noffle

[svn] see Changelog Dec 18 2001
author mirkol
date Tue, 18 Dec 2001 15:27:08 +0000
parents ffb1848a39db
children 91c91d102564
comparison
equal deleted inserted replaced
227:c48d7e881a21 228:1ad2602f57db
1 /* 1 /*
2 client.c 2 client.c
3 3
4 $Id: client.c 342 2001-12-09 12:31:57Z bears $ 4 $Id: client.c 358 2001-12-18 15:27:08Z mirkol $
5 */ 5 */
6 6
7 #if HAVE_CONFIG_H 7 #if HAVE_CONFIG_H
8 #include <config.h> 8 #include <config.h>
9 #endif 9 #endif
455 grp, &last, &first, &postAllow ) != 4 ) 455 grp, &last, &first, &postAllow ) != 4 )
456 { 456 {
457 Log_err( "Unknown reply to LIST or NEWGROUPS: %s", line ); 457 Log_err( "Unknown reply to LIST or NEWGROUPS: %s", line );
458 continue; 458 continue;
459 } 459 }
460 if ( ! Grp_isValidGroupName( grp ) )
461 {
462 Log_inf( "Group name %s invalid", grp );
463 continue;
464 }
460 if ( isForbiddenGroupName( grp ) ) 465 if ( isForbiddenGroupName( grp ) )
461 { 466 {
462 Log_inf( "Group %s forbidden", grp ); 467 Log_inf( "Group %s forbidden", grp );
463 continue; 468 continue;
464 } 469 }