]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Minor cleanups
authorOndrej Zajicek (work) <santiago@crfreenet.org>
Thu, 14 Dec 2017 21:15:01 +0000 (22:15 +0100)
committerOndrej Zajicek (work) <santiago@crfreenet.org>
Thu, 14 Dec 2017 21:15:01 +0000 (22:15 +0100)
nest/config.Y
proto/radv/radv.c

index f51be6ea0d70a703530e4826494a7edb8ae30d06..358c77455778c786bf286d5ce4278446b986a2d5 100644 (file)
@@ -227,7 +227,7 @@ proto_item:
  | IMPORT LIMIT limit_spec { this_proto->in_limit = $3; }
  | EXPORT LIMIT limit_spec { this_proto->out_limit = $3; }
  | IMPORT KEEP FILTERED bool { this_proto->in_keep_filtered = $4; }
- | VRF TEXT { this_proto->vrf = if_get_by_name($2); }
+ | VRF text { this_proto->vrf = if_get_by_name($2); }
  | TABLE rtable { this_proto->table = $2; }
  | ROUTER ID idval { this_proto->router_id = $3; }
  | DESCRIPTION text { this_proto->dsc = $2; }
index d53b65e376f6e92964d61349d5c98125e3981bf7..7e8950c5dc256b852a04f98ecd60169cfad62357 100644 (file)
@@ -169,7 +169,7 @@ radv_prepare_prefixes(struct radv_iface *ifa)
   {
     if (pfx->valid && !pfx->mark)
     {
-      RADV_TRACE(D_EVENTS, "Invalidating prefix %I/$d on %s",
+      RADV_TRACE(D_EVENTS, "Invalidating prefix %I/%d on %s",
                 pfx->prefix, pfx->len, ifa->iface->name);
 
       pfx->valid = 0;