diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-03 03:24:46 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-03 03:24:46 +0200 |
commit | 43ff1c3ed59cdb88c1232ac581d649a7db87337e (patch) | |
tree | 61d2bcc93b4b78864ee96ea1115aec27274a5705 | |
parent | b63b1bef96a3a089c5a95b47161dc620a6f82545 (diff) | |
download | babel-43ff1c3ed59cdb88c1232ac581d649a7db87337e.tar babel-43ff1c3ed59cdb88c1232ac581d649a7db87337e.zip |
Re-enable wildcard route requests for new neighbours
They had been disabled in the last commit by accident.
-rw-r--r-- | src/neigh.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/neigh.c b/src/neigh.c index a114181..b97540d 100644 --- a/src/neigh.c +++ b/src/neigh.c @@ -107,6 +107,5 @@ uint16_t gp_babel_neigh_get_cost(gmrf_context_t *ctx, const gp_babel_neigh_t *ne } void gp_babel_neigh_reset(gmrf_context_t *ctx, gmrf_iface_state_t *iface, gp_babel_neigh_t *neigh) { - - //gp_babel_send_route_request(ctx, iface, neigh, NULL); + gp_babel_send_route_request(ctx, iface, neigh, NULL); } |