X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=bridge.c;h=b1b79e8b6848be808780ed2e437917f92f1963c3;hp=46967c885e071cfb7c469dc6919f30caf3ae27ea;hb=e7ac4074bf497cd19e38adbb49e2b3eb275eeb05;hpb=e472b121daaef2efc3301445207e4c9ad69b06ae diff --git a/bridge.c b/bridge.c index 46967c8..b1b79e8 100644 --- a/bridge.c +++ b/bridge.c @@ -1,3 +1,16 @@ +/* + * netifd - network interface daemon + * Copyright (C) 2012 Felix Fietkau + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ #include #include #include @@ -343,7 +356,6 @@ bridge_free(struct device *dev) { struct bridge_state *bst; - device_cleanup(dev); bst = container_of(dev, struct bridge_state, dev); vlist_flush_all(&bst->members); free(bst); @@ -393,7 +405,7 @@ bridge_apply_settings(struct bridge_state *bst, struct blob_attr **tb) struct blob_attr *cur; /* defaults */ - cfg->stp = true; + cfg->stp = false; cfg->forward_delay = 2; cfg->igmp_snoop = true;