]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
OSPF: fixing typing errors
authorPavel Tvrdík <pawel.tvrdik@gmail.cz>
Wed, 13 May 2015 07:12:22 +0000 (09:12 +0200)
committerPavel Tvrdík <pawel.tvrdik@gmail.cz>
Wed, 13 May 2015 07:12:22 +0000 (09:12 +0200)
proto/ospf/rt.c

index 74d10c7b414123c812341d7490ccab6c574f2e19..495178c0f8f49c4994b0037bdaabecffd6702397 100644 (file)
@@ -103,7 +103,7 @@ merge_nexthops(struct ospf_proto *p, struct mpnh *s1, struct mpnh *s2, int r1, i
    * from the parent (i.e. it is allocated in calc_next_hop()).
    * Current nexthops (s1, en->nhs) can be reused if they weren't
    * inherited in previous steps (that is stored in nhs_reuse,
-   * i.e. created by merging or allocalted in calc_next_hop()).
+   * i.e. created by merging or allocated in calc_next_hop()).
    *
    * Generally, a node first inherits shared nexthops from its
    * parent and later possibly gets reusable copy during merging.
@@ -758,7 +758,7 @@ link_back(struct ospf_area *oa, struct top_hash_entry *en, struct top_hash_entry
      which may be later used as the next hop. */
 
   /* In OSPFv2, en->lb is set here. In OSPFv3, en->lb is just cleared here,
-     it is set in process_prefixes() to any global addres in the area */
+     it is set in process_prefixes() to any global address in the area */
 
   en->lb = IPA_NONE;
   en->lb_id = 0;
@@ -1010,7 +1010,7 @@ ospf_rt_sum_tr(struct ospf_area *oa)
   }
 }
 
-/* Decide about originating or flushing summary LSAs for condended area networks */
+/* Decide about originating or flushing summary LSAs for condensed area networks */
 static int
 decide_anet_lsa(struct ospf_area *oa, struct area_net *anet, struct ospf_area *anet_oa)
 {
@@ -1981,7 +1981,7 @@ rt_sync(struct ospf_proto *p)
   /* This is used for forced reload of routes */
   int reload = (p->calcrt == 2);
 
-  OSPF_TRACE(D_EVENTS, "Starting routing table synchronisation");
+  OSPF_TRACE(D_EVENTS, "Starting routing table synchronization");
 
   DBG("Now syncing my rt table with nest's\n");
   FIB_ITERATE_INIT(&fit, fib);