This commit is contained in:
fgerlits 2005-02-03 11:51:53 +00:00
parent 38d98806c0
commit 689fbf12d5
1 changed files with 3 additions and 4 deletions

View File

@ -22,7 +22,7 @@
Author : $Author: fgerlits $ Author : $Author: fgerlits $
Version : $Revision: 1.3 $ Version : $Revision: 1.4 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/XmlRpcTools.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/XmlRpcTools.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -728,9 +728,8 @@ XmlRpcTools :: extractLoginName(
throw std::invalid_argument("missing or bad login name argument"); throw std::invalid_argument("missing or bad login name argument");
} }
Ptr<std::string>::Ref loginName(new std::string( Ptr<std::string>::Ref login(new std::string(xmlRpcValue[loginName]));
xmlRpcValue[loginName] )); return login;
return loginName;
} }