Fix a '&&' that should have been a '&'.
Submitted by: Erik Salander <erik@whistle.com>
This commit is contained in:
parent
6ae59d4526
commit
da5ff8ce2a
@ -609,7 +609,7 @@ GetNewPort(struct alias_link *link, int alias_port_param)
|
||||
|
||||
if (go_ahead)
|
||||
{
|
||||
if ((packetAliasMode && PKT_ALIAS_USE_SOCKETS)
|
||||
if ((packetAliasMode & PKT_ALIAS_USE_SOCKETS)
|
||||
&& (link->flags & LINK_PARTIALLY_SPECIFIED))
|
||||
{
|
||||
if (GetSocket(port_net, &link->sockfd, link->link_type))
|
||||
|
@ -609,7 +609,7 @@ GetNewPort(struct alias_link *link, int alias_port_param)
|
||||
|
||||
if (go_ahead)
|
||||
{
|
||||
if ((packetAliasMode && PKT_ALIAS_USE_SOCKETS)
|
||||
if ((packetAliasMode & PKT_ALIAS_USE_SOCKETS)
|
||||
&& (link->flags & LINK_PARTIALLY_SPECIFIED))
|
||||
{
|
||||
if (GetSocket(port_net, &link->sockfd, link->link_type))
|
||||
|
Loading…
Reference in New Issue
Block a user