X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=support%2Fsdk%2Fc%2Fblip%2Fdriver%2Fconfig.c;h=54e46f39549c3f33efa0556b266ad76e57ac1cc1;hb=e1526e289da030ff214b8ee978c564289a207a53;hp=3c8260806fd8023e2209f2faff9dc182a0936a69;hpb=82bee1ef3f15d5154f09e150eef5b7c65bb973cc;p=tinyos-2.x.git diff --git a/support/sdk/c/blip/driver/config.c b/support/sdk/c/blip/driver/config.c index 3c826080..54e46f39 100644 --- a/support/sdk/c/blip/driver/config.c +++ b/support/sdk/c/blip/driver/config.c @@ -96,7 +96,9 @@ int config_parse(const char *file, struct config *c) { if (gotargs != 3) return 1; info("Read config from '%s'\r\n", file); - info("Proxying neighbor advertisements to %s\r\n", c->proxy_dev); + if (strncmp(c->proxy_dev, "lo", 3) != 0) { + info("Proxying neighbor advertisements to %s\r\n", c->proxy_dev); + } info("Using channel %i\r\n", c->channel); info("Retries: %i\r\n", c->retries); lastconfig = c;