]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
Fix spelling errors
authorStephen Hemminger <stephen@networkplumber.org>
Sun, 4 Aug 2013 22:00:56 +0000 (15:00 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Sun, 4 Aug 2013 22:00:56 +0000 (15:00 -0700)
Minor errors found by codespell

ip/ipnetns.c
ip/ipntable.c

index 794a4988084274f339b7e98d58432938ac868734..c8a47920539c7b1e355f496e8ba6acba8e25ebbe 100644 (file)
@@ -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
index 67b199e49a6343231669821f9bca5b21d41a1e0f..193e50cf1a4397099da043ef2853340d0021f33e 100644 (file)
@@ -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);
        }