aboutsummaryrefslogtreecommitdiff
path: root/src/identity-provider/identity_provider.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2016-01-09 17:09:37 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2016-01-09 17:09:37 +0000
commit3941d4252602eb9e6689897a8264380012fdf7e6 (patch)
tree1c080b9cefc132bb728a92b4ff02a72c511f9f4c /src/identity-provider/identity_provider.h
parent8feaa39e16ba33a192b32097e8087c9aca2d27d8 (diff)
downloadgnunet-3941d4252602eb9e6689897a8264380012fdf7e6.tar.gz
gnunet-3941d4252602eb9e6689897a8264380012fdf7e6.zip
- fix build, fix bugs
Diffstat (limited to 'src/identity-provider/identity_provider.h')
-rw-r--r--src/identity-provider/identity_provider.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/identity-provider/identity_provider.h b/src/identity-provider/identity_provider.h
index 12b96a51c..9fe444da4 100644
--- a/src/identity-provider/identity_provider.h
+++ b/src/identity-provider/identity_provider.h
@@ -41,7 +41,7 @@ struct GNUNET_IDENTITY_PROVIDER_Token
41 /** 41 /**
42 * The JWT representation of the identity token 42 * The JWT representation of the identity token
43 */ 43 */
44 const char *data; 44 char *data;
45}; 45};
46 46
47/** 47/**
@@ -52,7 +52,7 @@ struct GNUNET_IDENTITY_PROVIDER_Ticket
52 /** 52 /**
53 * The Base64 representation of the ticket 53 * The Base64 representation of the ticket
54 */ 54 */
55 const char *data; 55 char *data;
56}; 56};
57 57
58/** 58/**