diff options
author | José Bollo <jose.bollo@iot.bzh> | 2019-04-23 09:06:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2019-04-23 09:06:24 +0000 |
commit | 78fcce21a8b611de175223bff67f4a49fa95e64e (patch) | |
tree | 0e8d47f75aadf474c0cc4e7649620c9bae4f7fd4 /bindings/samples/AuthLogin.c | |
parent | a1e6d2c08445030fc35e98f5b97dd1a10024fe62 (diff) | |
parent | 92c9d33f206d5a69cafdb213746c82e4d817de89 (diff) |
Merge changes Id24d9bb0,I6807ed25
* changes:
change style initialization of struct afb_auth
missing full initialization for struct afb_verb_v3
Diffstat (limited to 'bindings/samples/AuthLogin.c')
-rw-r--r-- | bindings/samples/AuthLogin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/samples/AuthLogin.c b/bindings/samples/AuthLogin.c index 851faecd..df001fd1 100644 --- a/bindings/samples/AuthLogin.c +++ b/bindings/samples/AuthLogin.c @@ -112,7 +112,7 @@ static const struct afb_verb_v3 verbs[]= { {.verb="refresh" , .session=AFB_SESSION_LOA_1 | AFB_SESSION_RENEW, .callback=clientContextRefresh,.info="Refresh Client Authentication Token"}, {.verb="check" , .session=AFB_SESSION_LOA_1 , .callback=clientContextCheck ,.info="Check Client Authentication Token"}, {.verb="logout" , .session=AFB_SESSION_LOA_1 | AFB_SESSION_CLOSE, .callback=clientContextLogout ,.info="Logout Client and Free resources"}, - {NULL} + {0, 0, 0, 0, 0, 0, 0} }; const struct afb_binding_v3 afbBindingV3 = |