X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet_setup.c;h=a77fa58ae12733e98664481bf7702a06330c4e3c;hp=f8a8b99b1fe7afabf6951c1176b8afdc63b9c4a7;hb=5ffeb13d65313d5a191a605690a4f8fdf1604b48;hpb=14979f835df4214a7c2510852f7ffedc9e08c2c0 diff --git a/src/net_setup.c b/src/net_setup.c index f8a8b99b..a77fa58a 100644 --- a/src/net_setup.c +++ b/src/net_setup.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: net_setup.c,v 1.1.2.8 2002/03/01 14:09:31 guus Exp $ + $Id: net_setup.c,v 1.1.2.10 2002/03/10 16:09:15 guus Exp $ */ #include "config.h" @@ -327,6 +327,10 @@ cp routing_mode = RMODE_ROUTER; get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance); +#if !defined(SOL_IP) || !defined(IP_TOS) + if(priorityinheritance) + syslog(LOG_WARNING, _("PriorityInheritance not supported on this platform")); +#endif if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire)) macexpire= 600; @@ -563,7 +567,7 @@ cp next = node->next; c = (connection_t *)node->data; if(c->outgoing) - free(c->outgoing->name), free(c->outgoing); + free(c->outgoing->name), free(c->outgoing), c->outgoing = NULL; terminate_connection(c, 0); }