ipnetns: fix misprint in an error message

Signed-off-by: Mike Rapoport <mike.rapoport@ravellosystems.com>
This commit is contained in:
Mike Rapoport 2014-05-11 12:21:26 +03:00 committed by Stephen Hemminger
parent 7bc7fcaadb
commit 55713c8c72

View File

@ -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;
}