summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-06-08 14:42:34 +0200
committerMartin Mares <mj@ucw.cz>2000-06-08 14:42:34 +0200
commit6567e6cf5081542dfeb2c1f2493873c4fabb012f (patch)
treeb5c9a8dbbec44a2f9215f051a0e0a3088e7a5ace
parent1632f1fe32b9f13bf7746586bcbad70ffafe4697 (diff)
downloadbird-6567e6cf5081542dfeb2c1f2493873c4fabb012f.tar
bird-6567e6cf5081542dfeb2c1f2493873c4fabb012f.zip
Missing parameters...
-rw-r--r--proto/ospf/lsalib.c2
-rw-r--r--proto/ospf/ospf.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/proto/ospf/lsalib.c b/proto/ospf/lsalib.c
index 6bf3577..2bfd293 100644
--- a/proto/ospf/lsalib.c
+++ b/proto/ospf/lsalib.c
@@ -404,7 +404,7 @@ lsa_comp(struct ospf_lsa_header *l1, struct ospf_lsa_header *l2)
/**
* lsa_install_new - install new LSA into database
* @lsa: LSA header
- * @body pointer to LSA body
+ * @body: pointer to LSA body
* @oa: current ospf_area
*
* This function ensures installing new LSA into LSA database. Old instance is
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index 3830a4a..589e371 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -253,7 +253,7 @@ schedule_rtcalc(struct ospf_area *oa)
/**
* area_disp - invokes link-state database aging, originating of
* router LSA and routing table calculation
- * @timer - it's called every @ospf_area->tick seconds
+ * @timer: it's called every @ospf_area->tick seconds
*
* It ivokes aging and when @ospf_area->origrt is set to 1, start
* function for origination of router LSA. It also start routing
@@ -279,6 +279,7 @@ area_disp(timer *timer)
/**
* ospf_import_control - accept or reject new route from nest's routing table
* @p: current instance of protocol
+ * @new: the new route
* @attrs: list of arttributes
* @pool: pool for alloction of attributes
*