diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2004-08-13 15:16:13 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2004-08-13 15:16:13 +0000 |
| commit | da4e23d09cb5edb56c70ccc090d7929a72122043 (patch) | |
| tree | df0a4ae57e005302edc83daf953e79d27a753d80 /lasso/xml/samlp_status_code.c | |
| parent | 2687aac1714a0fe2260d725dc4c628c2696134f4 (diff) | |
| download | lasso-da4e23d09cb5edb56c70ccc090d7929a72122043.tar.gz lasso-da4e23d09cb5edb56c70ccc090d7929a72122043.tar.xz lasso-da4e23d09cb5edb56c70ccc090d7929a72122043.zip | |
declarations first (and s/lenght/length/)
Diffstat (limited to 'lasso/xml/samlp_status_code.c')
| -rw-r--r-- | lasso/xml/samlp_status_code.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lasso/xml/samlp_status_code.c b/lasso/xml/samlp_status_code.c index 5b9130a9..f8626603 100644 --- a/lasso/xml/samlp_status_code.c +++ b/lasso/xml/samlp_status_code.c @@ -43,12 +43,13 @@ Schema fragment (oasis-sstc-saml-schema-protocol-1.0.xsd): void lasso_samlp_status_code_set_value(LassoSamlpStatusCode *node, - const xmlChar *value) { - + const xmlChar *value) +{ + LassoNodeClass *class; g_assert(LASSO_IS_SAMLP_STATUS_CODE(node)); g_assert(value != NULL); - LassoNodeClass *class = LASSO_NODE_GET_CLASS(node); + class = LASSO_NODE_GET_CLASS(node); class->set_prop(LASSO_NODE (node), "Value", value); } |
