diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2004-07-21 17:18:05 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2004-07-21 17:18:05 +0000 |
| commit | 3c7bec5e796ff93f7db255874db1f4fd9bb1da38 (patch) | |
| tree | 0f20c602cb64866db795f4fd4fe9ffbbd44ae67b | |
| parent | c7f7fdc2ac1e58305bcad6395b88eadb163754ef (diff) | |
| download | lasso-3c7bec5e796ff93f7db255874db1f4fd9bb1da38.tar.gz lasso-3c7bec5e796ff93f7db255874db1f4fd9bb1da38.tar.xz lasso-3c7bec5e796ff93f7db255874db1f4fd9bb1da38.zip | |
ciompilation without warning
| -rw-r--r-- | lasso/Attic/protocols/artifact.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lasso/Attic/protocols/artifact.c b/lasso/Attic/protocols/artifact.c index 74a29122..d451f51b 100644 --- a/lasso/Attic/protocols/artifact.c +++ b/lasso/Attic/protocols/artifact.c @@ -191,7 +191,7 @@ lasso_artifact_new_from_query(const xmlChar *query) byteCode = (gchar *) g_new0(gchar, 5+1); identityProviderSuccinctID = (gchar *) g_new0(gchar, 20+1); assertionHandle = (gchar *) g_new0(gchar, 20+1); - ret = lasso_artifact_split_samlArt(b64_samlArt, byteCode, + ret = lasso_artifact_split_samlArt((gchar*)b64_samlArt, byteCode, identityProviderSuccinctID, assertionHandle); if (ret >= 0) { @@ -222,14 +222,14 @@ lasso_artifact_new_from_lares(const xmlChar *lares, byteCode = (gchar *) g_new0(gchar, 5+1); identityProviderSuccinctID = (gchar *) g_new0(gchar, 20+1); assertionHandle = (gchar *) g_new0(gchar, 20+1); - ret = lasso_artifact_split_samlArt(lares, byteCode, + ret = lasso_artifact_split_samlArt((gchar*)lares, byteCode, identityProviderSuccinctID, assertionHandle); if (ret >= 0) { - artifact = lasso_artifact_new(lares, + artifact = lasso_artifact_new((gchar*)lares, byteCode, identityProviderSuccinctID, assertionHandle, - relayState); + (gchar*)relayState); } g_free(byteCode); g_free(identityProviderSuccinctID); |
