fix html link
[src/app-framework-main.git] / src / wgtpkg-installer.c
index b5da59f..864d3d3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- Copyright 2015 IoT.bzh
+ Copyright 2015, 2016 IoT.bzh
 
  author: José Bollo <jose.bollo@iot.bzh>
 
 #include <errno.h>
 #include <getopt.h>
 
+#include <libxml/tree.h>
+
 #include "verbose.h"
-#include "wgtpkg.h"
+#include "wgtpkg-permissions.h"
+#include "wgtpkg-xmlsec.h"
 #include "wgt-info.h"
 #include "wgtpkg-install.h"
 
@@ -63,7 +66,7 @@ static struct option options[] = {
 /* install the widgets of the list */
 int main(int ac, char **av)
 {
-       int i;
+       int i, rc;
        struct wgt_info *ifo;
 
        LOGAUTH(appname);
@@ -90,7 +93,11 @@ int main(int ac, char **av)
                        verbosity++;
                        break;
                case 'p':
-                       grant_permission_list(optarg);
+                       rc = grant_permission_list(optarg);
+                       if (rc < 0) {
+                               ERROR("Can't set granted permission list");
+                               exit(1);
+                       }
                        break;
                case ':':
                        ERROR("missing argument value");