~zaphodb/powerdns/trunk

« back to all changes in this revision

Viewing changes to modules/remotebackend/remotebackend.cc

  • Committer: peter
  • Date: 2013-04-22 05:45:54 UTC
  • Revision ID: svn-v4:d19b8d6e-7fed-0310-83ef-9ca221ded41b:trunk/pdns:3169
Fix remotebackend setdomainmetadata return value handling. Fix by Aki Tuomi, closes #740

Show diffs side-by-side

added added

removed removed

Lines of Context:
300
300
     return false;
301
301
 
302
302
   if (answer["result"].IsBool())
303
 
      return answer.GetBool();
 
303
      return answer["result"].GetBool();
304
304
   return false;
305
305
}
306
306