diff options
author | roy <roy@pkgsrc.org> | 2010-01-29 13:27:54 +0000 |
---|---|---|
committer | roy <roy@pkgsrc.org> | 2010-01-29 13:27:54 +0000 |
commit | e9d7b000b123395c92bf03575d83991d1bccb1d7 (patch) | |
tree | f95b08ca62276177e9ad98eacb0837f5e142bfeb | |
parent | 290a5e13a025cb3e31e1ff4b06a60612fe35cd2c (diff) | |
download | pkgsrc-e9d7b000b123395c92bf03575d83991d1bccb1d7.tar.gz |
Punt stale file
-rw-r--r-- | net/powerdns-recursor/patches/patch-ad | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/net/powerdns-recursor/patches/patch-ad b/net/powerdns-recursor/patches/patch-ad deleted file mode 100644 index 0f18e9dab49..00000000000 --- a/net/powerdns-recursor/patches/patch-ad +++ /dev/null @@ -1,69 +0,0 @@ -$NetBSD: patch-ad,v 1.1.1.1 2009/04/21 14:16:47 roy Exp $ - -Taken from FreeBSD ports - ---- pdns_recursor.cc.orig 2008-06-24 22:23:33.000000000 +0400 -+++ pdns_recursor.cc 2009-03-19 23:27:01.000000000 +0300 -@@ -666,7 +666,7 @@ - catch(MOADNSException& e) { - L<<Logger::Error<<"DNS parser error: "<<dc->d_mdp.d_qname<<", "<<e.what()<<endl; - } -- catch(exception& e) { -+ catch(std::exception& e) { - L<<Logger::Error<<"STL error: "<<e.what()<<endl; - } - catch(...) { -@@ -1183,7 +1183,7 @@ - s_rcc.send(answer, &remote); - command(); - } -- catch(exception& e) { -+ catch(std::exception& e) { - L<<Logger::Error<<"Error dealing with control socket request: "<<e.what()<<endl; - } - catch(AhuException& ae) { -@@ -1486,7 +1486,7 @@ - SyncRes::s_negcache.clear(); - return "ok\n"; - } -- catch(exception& e) { -+ catch(std::exception& e) { - L<<Logger::Error<<"Had error reloading zones, keeping original data: "<<e.what()<<endl; - } - catch(AhuException& ae) { -@@ -1525,7 +1525,7 @@ - string tmp=DNSRR2String(rr); - rr=String2DNSRR(rr.qname, rr.qtype, tmp, rr.ttl); - } -- catch(exception &e) { -+ catch(std::exception &e) { - throw AhuException("Error parsing record '"+rr.qname+"' of type "+rr.qtype.getName()+" in zone '"+headers.first+"' from file '"+headers.second+"': "+e.what()); - } - catch(...) { -@@ -1647,7 +1647,7 @@ - } - } - } -- catch(exception& e) { -+ catch(std::exception& e) { - L<<Logger::Error<<"Retaining current script, error from '"<<fname<<"': "<< e.what() <<endl; - return string("Retaining current script, error from '"+fname+"': "+string(e.what())+"\n"); - } -@@ -1771,7 +1771,7 @@ - } - - } -- catch(exception &e) { -+ catch(std::exception &e) { - L<<Logger::Error<<"Failed to load 'lua' script from '"<<::arg()["lua-dns-script"]<<"': "<<e.what()<<endl; - exit(99); - } -@@ -2060,7 +2060,7 @@ - L<<Logger::Error<<"Exception: "<<ae.reason<<endl; - ret=EXIT_FAILURE; - } -- catch(exception &e) { -+ catch(std::exception &e) { - L<<Logger::Error<<"STL Exception: "<<e.what()<<endl; - ret=EXIT_FAILURE; - } |