summaryrefslogtreecommitdiffstats
path: root/eigrpd
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2018-10-25 20:06:59 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2018-10-25 20:10:57 +0200
commit0437e10517aa0b6c2e3490626333a0082ff4c79f (patch)
tree498f2d6f82500fb304e37771d21d48c6185d089f /eigrpd
parentMerge pull request #3121 from pguibert6WIND/flowspec_json_issue (diff)
downloadfrr-0437e10517aa0b6c2e3490626333a0082ff4c79f.tar.xz
frr-0437e10517aa0b6c2e3490626333a0082ff4c79f.zip
*: spelchek
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'eigrpd')
-rw-r--r--eigrpd/eigrp_const.h4
-rw-r--r--eigrpd/eigrp_dump.c2
-rw-r--r--eigrpd/eigrp_fsm.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/eigrpd/eigrp_const.h b/eigrpd/eigrp_const.h
index 3d84c8217..895a141e4 100644
--- a/eigrpd/eigrp_const.h
+++ b/eigrpd/eigrp_const.h
@@ -152,7 +152,7 @@ enum eigrp_fsm_states {
enum eigrp_fsm_events {
/*
* Input event other than query from succ,
- * FC is not satisified
+ * FC is not satisfied
*/
EIGRP_FSM_EVENT_NQ_FCN,
@@ -171,7 +171,7 @@ enum eigrp_fsm_events {
/* Query from succ while in active state */
EIGRP_FSM_EVENT_QACT,
- /* last reply, FC not satisified */
+ /* last reply, FC not satisfied */
EIGRP_FSM_EVENT_LR_FCN,
/*
diff --git a/eigrpd/eigrp_dump.c b/eigrpd/eigrp_dump.c
index bbe2b8822..27e02630a 100644
--- a/eigrpd/eigrp_dump.c
+++ b/eigrpd/eigrp_dump.c
@@ -228,7 +228,7 @@ void show_ip_eigrp_interface_detail(struct vty *vty, struct eigrp *eigrp,
"Un/reliable mcasts: ", 0, "/", 0, "Un/reliable ucasts: ", 0,
"/", 0);
vty_out(vty, "%-2s %s %d %s %d %s %d \n", "", "Mcast exceptions: ", 0,
- " CR packets: ", 0, " ACKs supressed: ", 0);
+ " CR packets: ", 0, " ACKs suppressed: ", 0);
vty_out(vty, "%-2s %s %d %s %d \n", "", "Retransmissions sent: ", 0,
"Out-of-sequence rcvd: ", 0);
vty_out(vty, "%-2s %s %s %s \n", "", "Authentication mode is ", "not",
diff --git a/eigrpd/eigrp_fsm.c b/eigrpd/eigrp_fsm.c
index f955e6df0..374114cf5 100644
--- a/eigrpd/eigrp_fsm.c
+++ b/eigrpd/eigrp_fsm.c
@@ -222,9 +222,9 @@ static const char *fsm_state2str(enum eigrp_fsm_events event)
case EIGRP_FSM_EVENT_LR:
return "Last Reply Event";
case EIGRP_FSM_EVENT_Q_FCN:
- return "Query Event Feasability not satisified";
+ return "Query Event Feasability not satisfied";
case EIGRP_FSM_EVENT_LR_FCS:
- return "Last Reply Event Feasability satisified";
+ return "Last Reply Event Feasability satisfied";
case EIGRP_FSM_EVENT_DINC:
return "Distance Increase Event";
case EIGRP_FSM_EVENT_QACT: