aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-08-23 19:41:14 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-08-23 19:48:15 +0200
commit48b1901a094efa5f9d387c55175320cdaeb165ad (patch)
tree7ae1e7b1137b29ef4d32ea4ed26a4bf99f23aafb
parentffb6113d265615cf18d2348769403d727e9a1484 (diff)
genskel: fix bug in namings
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r--src/genskel/genskel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/genskel/genskel.c b/src/genskel/genskel.c
index a2ed3e62..faebdb18 100644
--- a/src/genskel/genskel.c
+++ b/src/genskel/genskel.c
@@ -72,6 +72,7 @@ const char *api = NULL;
const char *scope = NULL;
const char *prefix = NULL;
const char *postfix = NULL;
+char *capi = NULL;
int priv = -1;
int noconc = -1;
@@ -283,7 +284,7 @@ void print_perms()
n = a_perms ? json_object_array_length(a_perms) : 0;
if (n) {
- printf("static const struct afb_auth _afb_auths_v2_%s[] = {\n" , api);
+ printf("static const struct afb_auth _afb_auths_v2_%s[] = {\n" , capi);
i = 0;
while (i < n) {
printf("\t{ %s }", json_object_get_string(json_object_array_get_idx(a_perms, i)));
@@ -306,7 +307,7 @@ struct json_object *new_perm(struct json_object *obj, const char *desc)
a_perms = json_object_new_array();
}
- asprintf(&b, "&_afb_auths_v2_%s[%d]", api, json_object_array_length(a_perms));
+ asprintf(&b, "&_afb_auths_v2_%s[%d]", capi, json_object_array_length(a_perms));
x = json_object_new_string(desc);
y = json_object_new_string(b);
json_object_array_add(a_perms, x);
@@ -592,7 +593,6 @@ void process(char *filename)
{
char *desc;
const char *info;
- char *capi;
/* translate - */
if (!strcmp(filename, "-"))