xref: /minix3/minix/tests/t60a.c (revision 99e8768deb6d3e9e4798167e690ca36ceaf0373b)
1 #include <unistd.h>
2 #include <stdlib.h>
3 #include <stdio.h>
4 
main(int argc,char * argv[])5 int main(int argc, char *argv[])
6 {
7 /* Return our tainted state to the parent */
8   int newmode;
9   char cmd[30];
10 
11   if (argc < 2) return(-2);
12   if ((newmode = atoi(argv[1])) > 0) {
13 	snprintf(cmd, sizeof(cmd), "chmod %d %s", newmode, argv[0]);
14 	system(cmd);
15   }
16 
17   return(issetugid());
18 }
19