summaryrefslogtreecommitdiffstats
path: root/ip
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2013-08-04 15:00:56 -0700
committerStephen Hemminger <stephen@networkplumber.org>2013-08-04 15:00:56 -0700
commitd259f0302f02206d7eb448da2673487fe1e0f8f6 (patch)
tree0eda2aa6fc3511ba3b39b7f37ac6a560bc7dc24f /ip
parentac3ff7203206aae04831901c9dd831e32209fc94 (diff)
Fix spelling errors
Minor errors found by codespell
Diffstat (limited to 'ip')
-rw-r--r--ip/ipnetns.c6
-rw-r--r--ip/ipntable.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/ip/ipnetns.c b/ip/ipnetns.c
index 794a4988..c8a47920 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 67b199e4..193e50cf 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);
}