diff --git a/sys/netinet/sctp_usrreq.c b/sys/netinet/sctp_usrreq.c index af3c2c7bd4b8..e65fe47e446a 100644 --- a/sys/netinet/sctp_usrreq.c +++ b/sys/netinet/sctp_usrreq.c @@ -2342,13 +2342,13 @@ flags_out: if ((stcb) && (net)) { if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { - /* Its unconfirmed */ + /* It's unconfirmed */ paddri->spinfo_state = SCTP_UNCONFIRMED; } else if (net->dest_state & SCTP_ADDR_REACHABLE) { - /* The Active */ + /* It's active */ paddri->spinfo_state = SCTP_ACTIVE; } else { - /* It's Inactive */ + /* It's inactive */ paddri->spinfo_state = SCTP_INACTIVE; } paddri->spinfo_cwnd = net->cwnd; @@ -2422,10 +2422,10 @@ flags_out: /* It's unconfirmed */ sstat->sstat_primary.spinfo_state = SCTP_UNCONFIRMED; } else if (net->dest_state & SCTP_ADDR_REACHABLE) { - /* Its active */ + /* It's active */ sstat->sstat_primary.spinfo_state = SCTP_ACTIVE; } else { - /* It's Inactive */ + /* It's inactive */ sstat->sstat_primary.spinfo_state = SCTP_INACTIVE; } sstat->sstat_primary.spinfo_cwnd = net->cwnd;