[cvs] bogofilter/src main.c,1.15,1.16 register.c,1.4,1.5

Matthias Andree matthias.andree at gmx.de
Thu Mar 6 00:52:16 CET 2003


On Wed, 05 Mar 2003, relson at users.sourceforge.net wrote:

> Index: register.c
> ===================================================================
> RCS file: /cvsroot/bogofilter/bogofilter/src/register.c,v
> retrieving revision 1.4
> retrieving revision 1.5
> diff -u -d -r1.4 -r1.5
> --- register.c	1 Mar 2003 00:31:05 -0000	1.4
> +++ register.c	5 Mar 2003 22:05:24 -0000	1.5
> @@ -54,10 +54,10 @@
>  
>    set_list_active_status(false);
>  
> -  if (run_type & REG_GOOD) incr_list = good_list;
> -  if (run_type & REG_SPAM) incr_list = spam_list;
> -  if (run_type & UNREG_GOOD) decr_list = good_list;
> -  if (run_type & UNREG_SPAM) decr_list = spam_list;
> +  if (_run_type & REG_GOOD) incr_list = good_list;
> +  if (_run_type & REG_SPAM) incr_list = spam_list;
> +  if (_run_type & UNREG_GOOD) decr_list = good_list;
> +  if (_run_type & UNREG_SPAM) decr_list = spam_list;

Hum, that's a namespace violation. _* identifiers are not available for
us to use although they happen to work on many configurations.

-- 
Matthias Andree




More information about the bogofilter-dev mailing list