]> granicus.if.org Git - pdns/commitdiff
Use C++11 conversion
authorAki Tuomi <cmouse@desteem.org>
Tue, 22 Dec 2015 16:13:05 +0000 (18:13 +0200)
committerAki Tuomi <cmouse@desteem.org>
Fri, 8 Jan 2016 06:57:12 +0000 (08:57 +0200)
pdns/lua-recursor4.cc

index 73b2a06f2900093cbfa6514dfaf9e7ca13bf6dac..b2208b5dc3841829eef799b73a6c7f6df9c8d2fe 100644 (file)
@@ -104,7 +104,7 @@ static int getFakePTRRecords(const DNSName& qname, const std::string& prefix, ve
   string newquery;
   for(int n = 0; n < 4; ++n) {
     newquery +=
-      std::to_string(strtol(parts[n*2].c_str(), 0, 16) + 16*strtol(parts[n*2+1].c_str(), 0, 16));
+      std::to_string(stoll(parts[n*2], 0, 16) + 16*stoll(parts[n*2+1], 0, 16));
     newquery.append(1,'.');
   }
   newquery += "in-addr.arpa.";