diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-16 14:04:32 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-16 14:04:32 +0000 |
| commit | 995db11b18b151ff4a07b44708fdcd130d8ac161 (patch) | |
| tree | f1e8ed9f6e6dd9b7be7ad061a40a7fa305478039 | |
| parent | 2f3cca14a32b2a7c4d530eb847ed34902734a580 (diff) | |
| download | lasso-995db11b18b151ff4a07b44708fdcd130d8ac161.tar.gz lasso-995db11b18b151ff4a07b44708fdcd130d8ac161.tar.xz lasso-995db11b18b151ff4a07b44708fdcd130d8ac161.zip | |
Removed 2 lasso_node_copy() in lasso_identity_set_local_nameIdentifier() and lasso_identity_set_remote_nameIdentifier()
| -rw-r--r-- | lasso/Attic/protocols/identity.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/Attic/protocols/identity.c b/lasso/Attic/protocols/identity.c index 380b8fff..55d8894e 100644 --- a/lasso/Attic/protocols/identity.c +++ b/lasso/Attic/protocols/identity.c @@ -78,14 +78,14 @@ void lasso_identity_set_local_nameIdentifier(LassoIdentity *identity, LassoNode *nameIdentifier) { - identity->local_nameIdentifier = lasso_node_copy(nameIdentifier); + identity->local_nameIdentifier = nameIdentifier; } void lasso_identity_set_remote_nameIdentifier(LassoIdentity *identity, LassoNode *nameIdentifier) { - identity->remote_nameIdentifier = lasso_node_copy(nameIdentifier); + identity->remote_nameIdentifier = nameIdentifier; } gboolean |
