adopted bugfix from new-template

git-svn-id: file:///Users/braun/svn/vermont/branches/vermont/dtls-merge@2410 aef3b71b-58ee-0310-9ba9-8811b9f0742f
master
sithhaue 2010-06-09 19:47:26 +00:00
parent 8d28eb576f
commit 603c747cc7
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ uint32_t CfgBase::getUInt32(const std::string& name, uint32_t def, XMLElement* e
{
std::string str;
try {
str = get(name, elem);
str = _get(name, elem);
return strtoul(str.c_str(), NULL, 10);
} catch (IllegalEntry ie) { }