repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tar: use utime() to restore timestamps
[minix.git]
/
test
/
t60a.c
blob
812996b8769e9610b3a16aaed4ed21351ef85131
1
#include <unistd.h>
2
#include <stdlib.h>
3
#include <stdio.h>
4
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 %o %s"
,
newmode
,
argv
[
0
]);
14
system
(
cmd
);
15
}
16
17
return
(
issetugid
());
18
}