Skip to content
Snippets Groups Projects
Commit 36bf8ac9 authored by Vitaliy Ivanov's avatar Vitaliy Ivanov
Browse files

mnexec.c: substituting tabs with spaces.

parent efe3877e
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,7 @@ void usage(char *name) ...@@ -46,7 +46,7 @@ void usage(char *name)
int setns(int fd, int nstype) int setns(int fd, int nstype)
{ {
return syscall(__NR_setns, fd, nstype); return syscall(__NR_setns, fd, nstype);
} }
/* Validate alphanumeric path foo1/bar2/baz */ /* Validate alphanumeric path foo1/bar2/baz */
...@@ -112,9 +112,9 @@ int main(int argc, char *argv[]) ...@@ -112,9 +112,9 @@ int main(int argc, char *argv[])
case -1: case -1:
perror("fork"); perror("fork");
return 1; return 1;
case 0: /* child */ case 0: /* child */
break; break;
default: /* parent */ default: /* parent */
return 0; return 0;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment