Commit 55713c8c authored by Mike Rapoport's avatar Mike Rapoport Committed by Stephen Hemminger

ipnetns: fix misprint in an error message

Signed-off-by: default avatarMike Rapoport <mike.rapoport@ravellosystems.com>
parent 7bc7fcaa
......@@ -435,7 +435,7 @@ static int netns_add(int argc, char **argv)
/* Create the filesystem state */
fd = open(netns_path, O_RDONLY|O_CREAT|O_EXCL, 0);
if (fd < 0) {
fprintf(stderr, "Cannot not create namespace file \"%s\": %s\n",
fprintf(stderr, "Cannot create namespace file \"%s\": %s\n",
netns_path, strerror(errno));
return -1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment