From: Zbigniew Jędrzejewski-Szmek Date: Sun, 11 May 2014 12:34:26 +0000 (-0400) Subject: networkd, build-sys: spelling fix X-Git-Tag: v213~160 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=5ea846cc5197682d07ee46398996a8c3ccfbcc38 networkd, build-sys: spelling fix --- diff --git a/configure.ac b/configure.ac index c3653e3f7..336938ee7 100644 --- a/configure.ac +++ b/configure.ac @@ -843,7 +843,7 @@ AC_SUBST(NTP_SERVERS) AC_ARG_WITH(time-epoch, AS_HELP_STRING([--with-time-epoch=SECONDS], - [TIme epoch for time clients]), + [Time epoch for time clients]), [TIME_EPOCH="$withval"], [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"]) diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 37a572dc0..6ce965b38 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -1710,12 +1710,12 @@ int link_rtnl_process_address(sd_rtnl *rtnl, sd_rtnl_message *message, void *use r = sd_rtnl_message_addr_get_ifindex(message, &ifindex); if (r < 0 || ifindex <= 0) { - log_warning("rtnl: received address message without valid ifindix, ignoring"); + log_warning("rtnl: received address message without valid ifindex, ignoring"); return 0; } else { r = link_get(m, ifindex, &link); if (r < 0 || !link) { - log_warning("rtnl: received address for non-existing link, ignoring"); + log_warning("rtnl: received address for a nonexistent link, ignoring"); return 0; } }