On Tue, 2015-10-27 at 12:09 +0300, Michael Ivanov wrote:
> Hallo,
> 
> Is this an error:
> 
>   if (messenger->flags | PN_FLAGS_CHECK_ROUTES) {
>       . . . .
>   }
> 
> (line 1498 in messenger.c)?
> 
> Shouldn't it be:
> 
>  if (messenger->flags & PN_FLAGS_CHECK_ROUTES) {
> 
> Or do I miss sthing?
> 

Well spotted. As it is, it will always do the check regardless of the
flag setting. I would go ahead and fix it but I'm not a big messenger
user - fixing this would mean that if you haven't set the flag the
route check will no longer happen, could this be a problem for existing
messenger apps?

Cheers,
Alan

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
For additional commands, e-mail: users-h...@qpid.apache.org

Reply via email to