summaryrefslogtreecommitdiffstats
path: root/lasso/Attic
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 /lasso/Attic
parented288aacd6bbb12c71b7c67b031ee0f9ed95849b (diff)
downloadlasso-c46c65a6bfabba50e93c9a723b831f99b735c19d.tar.gz
lasso-c46c65a6bfabba50e93c9a723b831f99b735c19d.tar.xz
lasso-c46c65a6bfabba50e93c9a723b831f99b735c19d.zip
Renamed all SAMLArt strings by SAMLart
Diffstat (limited to 'lasso/Attic')
-rw-r--r--lasso/Attic/protocols/artifact.c6
1 files changed, 3 insertions, 3 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);