upload tizen1.0 source
[framework/security/smack.git] / utils / smackcipso.c
1 /*
2  * This file is part of libsmack
3  *
4  * Copyright (C) 2011 Intel Corporation
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License
8  * version 2.1 as published by the Free Software Foundation.
9  *
10  * This library is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18  * 02110-1301 USA
19  *
20  * Authors:
21  * Brian McGillion <brian.mcgillion@intel.com>
22  */
23
24 #include "common.h"
25 #include <stdlib.h>
26 #include <stdio.h>
27
28 int main(int argc, char **argv)
29 {
30         if (argc != 2) {
31                 fprintf(stderr, "Usage: %s <path>\n", argv[0]);
32                 exit(1);
33         }
34
35         if (apply_cipso(argv[1])) {
36                 perror("Failure to apply cipso : ");
37                 exit(1);
38         }
39
40         exit(0);
41 }