From: Stephen Hemminger Date: Sun, 4 Aug 2013 22:00:56 +0000 (-0700) Subject: Fix spelling errors X-Git-Tag: v3.11.0~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d259f0302f02206d7eb448da2673487fe1e0f8f6;p=thirdparty%2Fiproute2.git Fix spelling errors Minor errors found by codespell --- diff --git a/ip/ipnetns.c b/ip/ipnetns.c index 794a49880..c8a479205 100644 --- a/ip/ipnetns.c +++ b/ip/ipnetns.c @@ -167,7 +167,7 @@ static int netns_exec(int argc, char **argv) fprintf(stderr, "unshare failed: %s\n", strerror(errno)); return -1; } - /* Don't let any mounts propogate back to the parent */ + /* Don't let any mounts propagate back to the parent */ if (mount("", "/", "none", MS_SLAVE | MS_REC, NULL)) { fprintf(stderr, "\"mount --make-rslave /\" failed: %s\n", strerror(errno)); @@ -205,7 +205,7 @@ static int netns_exec(int argc, char **argv) exit(1); } - /* If child failed, propogate status */ + /* If child failed, propagate status */ if (WIFEXITED(status)) exit(WEXITSTATUS(status)); @@ -405,7 +405,7 @@ static int netns_add(int argc, char **argv) /* Create the base netns directory if it doesn't exist */ mkdir(NETNS_RUN_DIR, S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH); - /* Make it possible for network namespace mounts to propogate between + /* Make it possible for network namespace mounts to propagate between * mount namespaces. This makes it likely that a unmounting a network * namespace file in one namespace will unmount the network namespace * file in all namespaces allowing the network namespace to be freed diff --git a/ip/ipntable.c b/ip/ipntable.c index 67b199e49..193e50cf1 100644 --- a/ip/ipntable.c +++ b/ip/ipntable.c @@ -305,7 +305,7 @@ static int ipntable_modify(int cmd, int flags, int argc, char **argv) if (!namep) missarg("NAME"); if (!threshsp && !gc_intp && !parms_change) { - fprintf(stderr, "Not enough information: changable attributes required.\n"); + fprintf(stderr, "Not enough information: changeable attributes required.\n"); exit(-1); }