diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2018-10-25 20:06:59 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2018-10-25 20:10:57 +0200 |
| commit | 0437e10517aa0b6c2e3490626333a0082ff4c79f (patch) | |
| tree | 498f2d6f82500fb304e37771d21d48c6185d089f /zebra/if_sysctl.c | |
| parent | 6cd85474f80492d4721966610357109593ae4ab9 (diff) | |
*: spelchek
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'zebra/if_sysctl.c')
| -rw-r--r-- | zebra/if_sysctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/if_sysctl.c b/zebra/if_sysctl.c index 3f918c361a..44afd266bc 100644 --- a/zebra/if_sysctl.c +++ b/zebra/if_sysctl.c @@ -61,7 +61,7 @@ void ifstat_update_sysctl(void) /* We free this memory at the end of this function. */ ref = buf = XMALLOC(MTYPE_TMP, bufsiz); - /* Fetch interface informations into allocated buffer. */ + /* Fetch interface information into allocated buffer. */ if (sysctl(mib, MIBSIZ, buf, &bufsiz, NULL, 0) < 0) { flog_warn(EC_ZEBRA_SYSCTL_FAILED, "sysctl error by %s", safe_strerror(errno)); @@ -113,7 +113,7 @@ void interface_list(struct zebra_ns *zns) /* We free this memory at the end of this function. */ ref = buf = XMALLOC(MTYPE_TMP, bufsiz); - /* Fetch interface informations into allocated buffer. */ + /* Fetch interface information into allocated buffer. */ if (sysctl(mib, MIBSIZ, buf, &bufsiz, NULL, 0) < 0) { flog_err_sys(EC_ZEBRA_IFLIST_FAILED, "Could not enumerate interfaces: %s", |
