From 995db11b18b151ff4a07b44708fdcd130d8ac161 Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Fri, 16 Jul 2004 14:04:32 +0000 Subject: Removed 2 lasso_node_copy() in lasso_identity_set_local_nameIdentifier() and lasso_identity_set_remote_nameIdentifier() --- lasso/Attic/protocols/identity.c | 4 ++-- 1 file 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 -- cgit