diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2006-11-23 09:47:54 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2006-11-23 09:47:54 +0000 |
| commit | f2fa9561ac93915661be2ea0b140f3c422ffef09 (patch) | |
| tree | df52d44104ad80843094e9060d731518b7c9bc16 | |
| parent | b8f7f26777d903b5885d530ab0f60ece3980ea2d (diff) | |
style and missing header
| -rw-r--r-- | lasso/saml-2.0/ecp.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lasso/saml-2.0/ecp.c b/lasso/saml-2.0/ecp.c index dd87632d..b3efb20e 100644 --- a/lasso/saml-2.0/ecp.c +++ b/lasso/saml-2.0/ecp.c @@ -29,6 +29,7 @@ #include <lasso/saml-2.0/profileprivate.h> #include <lasso/id-ff/providerprivate.h> #include <lasso/id-ff/identityprivate.h> +#include <lasso/id-ff/serverprivate.h> #include <lasso/saml-2.0/ecp.h> @@ -122,8 +123,8 @@ lasso_ecp_process_authn_request_msg(LassoEcp *ecp, const char *authn_request_msg buf = xmlAllocOutputBuffer(handler); xmlNodeDumpOutput(buf, NULL, xmlnode, 0, 0, "utf-8"); xmlOutputBufferFlush(buf); - LASSO_PROFILE(ecp)->msg_body = \ - g_strdup((char*)(buf->conv ? buf->conv->content : buf->buffer->content)); + LASSO_PROFILE(ecp)->msg_body = g_strdup( + (char*)(buf->conv ? buf->conv->content : buf->buffer->content)); xmlOutputBufferClose(buf); profile->remote_providerID = lasso_server_get_first_providerID(profile->server); @@ -215,8 +216,8 @@ lasso_ecp_process_response_msg(LassoEcp *ecp, const char *response_msg) buf = xmlAllocOutputBuffer(handler); xmlNodeDumpOutput(buf, NULL, new_envelope, 0, 0, "utf-8"); xmlOutputBufferFlush(buf); - LASSO_PROFILE(ecp)->msg_body = \ - g_strdup((char*)(buf->conv ? buf->conv->content : buf->buffer->content)); + LASSO_PROFILE(ecp)->msg_body = g_strdup( + (char*)(buf->conv ? buf->conv->content : buf->buffer->content)); xmlOutputBufferClose(buf); xmlFreeDoc(doc); |
