diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2004-11-01 18:23:42 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2004-11-01 18:23:42 +0000 |
| commit | 16d3d7e4ede6bfb7f0bdfef0d3667f9aed3438a6 (patch) | |
| tree | 9743d9aea0d73ec715630ab37c6e45edf3c39221 | |
| parent | 34dd2e5653f0ed661de3a6d702e3b6655218c8f5 (diff) | |
| download | lasso-16d3d7e4ede6bfb7f0bdfef0d3667f9aed3438a6.tar.gz lasso-16d3d7e4ede6bfb7f0bdfef0d3667f9aed3438a6.tar.xz lasso-16d3d7e4ede6bfb7f0bdfef0d3667f9aed3438a6.zip | |
cleaning files
| -rw-r--r-- | lasso/xml/lib_assertion.c | 2 | ||||
| -rw-r--r-- | lasso/xml/lib_authentication_statement.c | 2 | ||||
| -rw-r--r-- | lasso/xml/lib_authn_context.c | 2 | ||||
| -rw-r--r-- | lasso/xml/lib_authn_response.c | 2 | ||||
| -rw-r--r-- | lasso/xml/lib_federation_termination_notification.c | 2 | ||||
| -rw-r--r-- | lasso/xml/lib_request_authn_context.c | 2 | ||||
| -rw-r--r-- | lasso/xml/lib_subject.c | 2 | ||||
| -rw-r--r-- | lasso/xml/saml_assertion.c | 30 | ||||
| -rw-r--r-- | lasso/xml/saml_audience_restriction_condition.c | 2 | ||||
| -rw-r--r-- | lasso/xml/saml_authentication_statement.c | 2 | ||||
| -rw-r--r-- | lasso/xml/saml_name_identifier.c | 2 |
11 files changed, 25 insertions, 25 deletions
diff --git a/lasso/xml/lib_assertion.c b/lasso/xml/lib_assertion.c index 7603fdc8..d1e6df53 100644 --- a/lasso/xml/lib_assertion.c +++ b/lasso/xml/lib_assertion.c @@ -72,7 +72,7 @@ get_xmlNode(LassoNode *node) static void init_from_xml(LassoNode *node, xmlNode *xmlnode) { - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); LASSO_LIB_ASSERTION(node)->InResponseTo = xmlGetProp(xmlnode, "InResponseTo"); } diff --git a/lasso/xml/lib_authentication_statement.c b/lasso/xml/lib_authentication_statement.c index e802cfd5..25abb0a6 100644 --- a/lasso/xml/lib_authentication_statement.c +++ b/lasso/xml/lib_authentication_statement.c @@ -73,7 +73,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) LassoLibAuthenticationStatement *statement = LASSO_LIB_AUTHENTICATION_STATEMENT(node); xmlNode *t; - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); t = xmlnode->children; while (t) { diff --git a/lasso/xml/lib_authn_context.c b/lasso/xml/lib_authn_context.c index 794e010e..a47bb2fb 100644 --- a/lasso/xml/lib_authn_context.c +++ b/lasso/xml/lib_authn_context.c @@ -83,7 +83,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) LassoLibAuthnContext *context = LASSO_LIB_AUTHN_CONTEXT(node); xmlNode *t; - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); t = xmlnode->children; while (t) { diff --git a/lasso/xml/lib_authn_response.c b/lasso/xml/lib_authn_response.c index f1da845d..b703f1c3 100644 --- a/lasso/xml/lib_authn_response.c +++ b/lasso/xml/lib_authn_response.c @@ -87,7 +87,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) LassoLibAuthnResponse *response = LASSO_LIB_AUTHN_RESPONSE(node); xmlNode *t; - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); t = xmlnode->children; while (t) { diff --git a/lasso/xml/lib_federation_termination_notification.c b/lasso/xml/lib_federation_termination_notification.c index 5a48140b..d5c63e1f 100644 --- a/lasso/xml/lib_federation_termination_notification.c +++ b/lasso/xml/lib_federation_termination_notification.c @@ -91,7 +91,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) ob = LASSO_LIB_FEDERATION_TERMINATION_NOTIFICATION(node); - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); t = xmlnode->children; while (t) { diff --git a/lasso/xml/lib_request_authn_context.c b/lasso/xml/lib_request_authn_context.c index 4ae0c5d3..bbe48dfe 100644 --- a/lasso/xml/lib_request_authn_context.c +++ b/lasso/xml/lib_request_authn_context.c @@ -79,7 +79,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) LassoLibRequestAuthnContext *context = LASSO_LIB_REQUEST_AUTHN_CONTEXT(node); xmlNode *t, *n; - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); t = xmlnode->children; while (t) { diff --git a/lasso/xml/lib_subject.c b/lasso/xml/lib_subject.c index 8ca225f5..f62daa3b 100644 --- a/lasso/xml/lib_subject.c +++ b/lasso/xml/lib_subject.c @@ -73,7 +73,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) LassoLibSubject *subject = LASSO_LIB_SUBJECT(node); xmlNode *t; - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); t = xmlnode->children; while (t) { if (t->type != XML_ELEMENT_NODE) { diff --git a/lasso/xml/saml_assertion.c b/lasso/xml/saml_assertion.c index 62876897..94a3ca41 100644 --- a/lasso/xml/saml_assertion.c +++ b/lasso/xml/saml_assertion.c @@ -135,25 +135,25 @@ get_xmlNode(LassoNode *node) static void init_from_xml(LassoNode *node, xmlNode *xmlnode) { - char *s; + char *s; xmlNode *t; - LassoSamlAssertion *assertion = LASSO_SAML_ASSERTION(node); + LassoSamlAssertion *assertion = LASSO_SAML_ASSERTION(node); parent_class->init_from_xml(node, xmlnode); - assertion->AssertionID = xmlGetProp(xmlnode, "AssertionID"); - assertion->Issuer = xmlGetProp(xmlnode, "Issuer"); - assertion->IssueInstant = xmlGetProp(xmlnode, "IssueInstant"); - s = xmlGetProp(xmlnode, "MajorVersion"); - if (s) { - assertion->MajorVersion = atoi(s); - xmlFree(s); - } - s = xmlGetProp(xmlnode, "MinorVersion"); - if (s) { - assertion->MinorVersion = atoi(s); - xmlFree(s); - } + assertion->AssertionID = xmlGetProp(xmlnode, "AssertionID"); + assertion->Issuer = xmlGetProp(xmlnode, "Issuer"); + assertion->IssueInstant = xmlGetProp(xmlnode, "IssueInstant"); + s = xmlGetProp(xmlnode, "MajorVersion"); + if (s) { + assertion->MajorVersion = atoi(s); + xmlFree(s); + } + s = xmlGetProp(xmlnode, "MinorVersion"); + if (s) { + assertion->MinorVersion = atoi(s); + xmlFree(s); + } t = xmlnode->children; while (t) { diff --git a/lasso/xml/saml_audience_restriction_condition.c b/lasso/xml/saml_audience_restriction_condition.c index b5466d90..77936e21 100644 --- a/lasso/xml/saml_audience_restriction_condition.c +++ b/lasso/xml/saml_audience_restriction_condition.c @@ -70,7 +70,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) LassoSamlAudienceRestrictionCondition *condition; xmlNode *t; - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); t = xmlnode->children; while (t) { diff --git a/lasso/xml/saml_authentication_statement.c b/lasso/xml/saml_authentication_statement.c index 6cc59f96..344bd9c8 100644 --- a/lasso/xml/saml_authentication_statement.c +++ b/lasso/xml/saml_authentication_statement.c @@ -78,7 +78,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) LassoSamlAuthenticationStatement *statement = LASSO_SAML_AUTHENTICATION_STATEMENT(node); xmlNode *t; - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); statement->AuthenticationMethod = xmlGetProp(xmlnode, "AuthenticationMethod"); statement->AuthenticationInstant = xmlGetProp(xmlnode, "AuthenticationInstant"); diff --git a/lasso/xml/saml_name_identifier.c b/lasso/xml/saml_name_identifier.c index ed715281..020b254c 100644 --- a/lasso/xml/saml_name_identifier.c +++ b/lasso/xml/saml_name_identifier.c @@ -103,7 +103,7 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode) { LassoSamlNameIdentifier *identifier = LASSO_SAML_NAME_IDENTIFIER(node); - parent_class->init_from_xml(node, xmlnode); + parent_class->init_from_xml(node, xmlnode); identifier->content = xmlNodeGetContent(xmlnode); identifier->Format = xmlGetProp(xmlnode, "Format"); identifier->NameQualifier = xmlGetProp(xmlnode, "NameQualifier"); |
