From: Guus Sliepen Date: Mon, 8 Jan 2001 20:35:30 +0000 (+0000) Subject: - Squashed another nasty bug. X-Git-Tag: release-1.0pre4~66 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=11f3e9d138daf6b726631cc124b14d66dfa4d1f7;hp=447a43d63960802a7a29201c512246be11eb9c94 - Squashed another nasty bug. --- diff --git a/src/protocol.c b/src/protocol.c index 0b3563ef..a145c98e 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: protocol.c,v 1.28.4.75 2001/01/07 20:19:31 guus Exp $ + $Id: protocol.c,v 1.28.4.76 2001/01/08 20:35:30 guus Exp $ */ #include "config.h" @@ -1128,7 +1128,7 @@ cp { p = (connection_t *)node->data; if(p != cl && p->status.meta && p->status.active) - if(!(cl->options & OPTION_INDIRECT) || from == myself) + if(!(p->options & OPTION_INDIRECT) || from == myself) send_request(p, "%d %s", KEY_CHANGED, from->name); } cp