Imported Upstream version 20080930
[ltp-debian.git] / testcases / audit-test / utils / bin / do_fchmod.c
blobe4d911fbe9f7031f3aadc2d2faabbc696c6795e4
1 /* (c) Copyright Hewlett-Packard Development Company, L.P., 2007
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of version 2 the GNU General Public License as
5 * published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #include "includes.h"
18 int main(int argc, char **argv)
20 int exitval, result;
21 int fd;
23 if (argc != 3) {
24 fprintf(stderr, "Usage:\n%s <path> <mode>\n",
25 argv[0]);
26 return TEST_ERROR;
29 fd = open(argv[1], O_RDWR);
30 if (fd == -1) {
31 perror("do_fchmod: open fd");
32 return TEST_ERROR;
35 errno = 0;
36 exitval = fchmod(fd, atoi(argv[2]));
37 result = exitval < 0;
39 printf("%d %d %d\n", result, result ? errno : exitval, getpid());
40 return result;