summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-08-06 13:37:27 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-08-06 13:37:27 +0000
commitc46c65a6bfabba50e93c9a723b831f99b735c19d (patch)
tree980cd6ec1cd696ee78b97ebdcbf6972451fb1698
parented288aacd6bbb12c71b7c67b031ee0f9ed95849b (diff)
downloadlasso-c46c65a6bfabba50e93c9a723b831f99b735c19d.tar.gz
lasso-c46c65a6bfabba50e93c9a723b831f99b735c19d.tar.xz
lasso-c46c65a6bfabba50e93c9a723b831f99b735c19d.zip
Renamed all SAMLArt strings by SAMLart
-rw-r--r--lasso/Attic/protocols/artifact.c6
-rw-r--r--lasso/id-ff/login.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/lasso/Attic/protocols/artifact.c b/lasso/Attic/protocols/artifact.c
index ee49ca90..ce3cd016 100644
--- a/lasso/Attic/protocols/artifact.c
+++ b/lasso/Attic/protocols/artifact.c
@@ -147,7 +147,7 @@ lasso_artifact_get_samlArt(LassoArtifact *artifact,
GError *tmp_err = NULL;
samlArt = lasso_node_get_child_content(LASSO_NODE(artifact),
- "SAMLArt", NULL, &tmp_err);
+ "SAMLart", NULL, &tmp_err);
if (samlArt == NULL) {
g_propagate_error (err, tmp_err);
}
@@ -213,7 +213,7 @@ lasso_artifact_new(gchar *samlArt,
artifact = LASSO_NODE(g_object_new(LASSO_TYPE_ARTIFACT, NULL));
class = LASSO_NODE_GET_CLASS(artifact);
- class->new_child(artifact, "SAMLArt", samlArt, FALSE);
+ class->new_child(artifact, "SAMLart", samlArt, FALSE);
class->new_child(artifact, "ByteCode", byteCode, FALSE);
b64_identityProviderSuccinctID = xmlSecBase64Encode(identityProviderSuccinctID, 20, 0);
class->new_child(artifact, "B64IdentityProviderSuccinctID",
@@ -239,7 +239,7 @@ lasso_artifact_new_from_query(const xmlChar *query)
gint ret;
gd = lasso_query_to_dict(query);
- b64_samlArt = g_strdup(lasso_g_ptr_array_index((GPtrArray *)g_datalist_get_data(&gd, "SAMLArt"), 0));
+ b64_samlArt = g_strdup(lasso_g_ptr_array_index((GPtrArray *)g_datalist_get_data(&gd, "SAMLart"), 0));
relayState = g_strdup(lasso_g_ptr_array_index((GPtrArray *)g_datalist_get_data(&gd, "RelayState"), 0));
g_datalist_clear(&gd);
diff --git a/lasso/id-ff/login.c b/lasso/id-ff/login.c
index 546b1968..1a25b505 100644
--- a/lasso/id-ff/login.c
+++ b/lasso/id-ff/login.c
@@ -459,7 +459,7 @@ lasso_login_build_artifact_msg(LassoLogin *login,
switch (method) {
case lassoHttpMethodRedirect:
LASSO_PROFILE(login)->msg_url = g_new(gchar, 1024+1);
- g_sprintf(LASSO_PROFILE(login)->msg_url, "%s?SAMLArt=%s", url, b64_samlArt);
+ g_sprintf(LASSO_PROFILE(login)->msg_url, "%s?SAMLart=%s", url, b64_samlArt);
if (relayState != NULL) {
g_sprintf(LASSO_PROFILE(login)->msg_url, "%s&RelayState=%s",
LASSO_PROFILE(login)->msg_url, relayState);