1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-26 17:25:34 +03:00

tree-wide: fix typo

This commit is contained in:
Yu Watanabe 2021-02-15 15:47:17 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent c39e36203f
commit 0f1f933b6e
3 changed files with 5 additions and 5 deletions

View File

@ -208,7 +208,7 @@ static int process_progress(int fd, FILE* console) {
p = percent(pass, cur, max);
r = fprintf(console, "\r%s: fsck %3.1f%% complete...\r", device, p);
if (r < 0)
return -EIO; /* No point in continuing if something happend to our output stream */
return -EIO; /* No point in continuing if something happened to our output stream */
fflush(console);
clear = MAX(clear, r);

View File

@ -839,15 +839,15 @@ static int manager_drop_routes_internal(Manager *manager, bool foreign, const Li
routes = foreign ? manager->routes_foreign : manager->routes;
SET_FOREACH(route, routes) {
/* Do not touch routes managed by the kernel */
/* Do not touch routes managed by the kernel. */
if (route->protocol == RTPROT_KERNEL)
continue;
/* The route will be configured later, or already configured by a link */
/* The route will be configured later, or already configured by a link. */
if (links_have_route(manager, route, except))
continue;
/* The existing links do not have the route. Let's drop this now. It may by
/* The existing links do not have the route. Let's drop this now. It may be
* re-configured later. */
k = route_remove(route, manager, NULL, NULL);
if (k < 0 && r >= 0)

View File

@ -2459,7 +2459,7 @@ static int patch_rr(DnsPacket *p, usec_t age) {
INIT_REWINDER(rewinder, p);
/* Patches the RR at the current rindex, substracts the specified time from the TTL */
/* Patches the RR at the current rindex, subtracts the specified time from the TTL */
r = dns_packet_read_name(p, NULL, true, NULL);
if (r < 0)