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);
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)
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)