]> git.pld-linux.org Git - packages/pdns.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:41:22 +0000 (23:41 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    pdns-305.patch -> 1.2
    pdns-307.patch -> 1.2

pdns-305.patch [deleted file]
pdns-307.patch [deleted file]

diff --git a/pdns-305.patch b/pdns-305.patch
deleted file mode 100644 (file)
index 98ab984..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
---- trunk/pdns/pdns/logger.cc  (revision 304)
-+++ trunk/pdns/pdns/logger.cc  (revision 305)
-@@ -1,11 +1,10 @@
- /*
-     PowerDNS Versatile Database Driven Nameserver
--    Copyright (C) 2002  PowerDNS.COM BV
-+    Copyright (C) 2005  PowerDNS.COM BV
-     This program is free software; you can redistribute it and/or modify
--    it under the terms of the GNU General Public License as published by
--    the Free Software Foundation; either version 2 of the License, or
--    (at your option) any later version.
-+    it under the terms of the GNU General Public License version 2 as 
-+    published by the Free Software Foundation
-     This program is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-@@ -131,6 +130,16 @@
-   return *this;
- }
-+Logger& Logger::operator<<(unsigned long i)
-+{
-+  ostringstream tmp;
-+  tmp<<i;
-+
-+  *this<<tmp.str();
-+
-+  return *this;
-+}
-+
- Logger& Logger::operator<<(ostream & (&)(ostream &))
- {
---- trunk/pdns/pdns/logger.hh  (revision 304)
-+++ trunk/pdns/pdns/logger.hh  (revision 305)
-@@ -1,11 +1,10 @@
- /*
-     PowerDNS Versatile Database Driven Nameserver
--    Copyright (C) 2002  PowerDNS.COM BV
-+    Copyright (C) 2005  PowerDNS.COM BV
-     This program is free software; you can redistribute it and/or modify
--    it under the terms of the GNU General Public License as published by
--    the Free Software Foundation; either version 2 of the License, or
--    (at your option) any later version.
-+    it under the terms of the GNU General Public License version 2 as 
-+    published by the Free Software Foundation
-     This program is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-@@ -111,6 +110,7 @@
-   Logger& operator<<(const string &s);   //!< log a string
-   Logger& operator<<(int);   //!< log an int
-   Logger& operator<<(unsigned int);   //!< log an unsigned int
-+  Logger& operator<<(unsigned long);   //!< log an unsigned int
-   Logger& operator<<(Urgency);    //!< set the urgency, << style
- #ifndef WIN32
diff --git a/pdns-307.patch b/pdns-307.patch
deleted file mode 100644 (file)
index a68e684..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
---- trunk/pdns/pdns/logger.cc  (revision 306)
-+++ trunk/pdns/pdns/logger.cc  (revision 307)
-@@ -140,6 +140,15 @@
-   return *this;
- }
-+Logger& Logger::operator<<(long i)
-+{
-+  ostringstream tmp;
-+  tmp<<i;
-+
-+  *this<<tmp.str();
-+
-+  return *this;
-+}
- Logger& Logger::operator<<(ostream & (&)(ostream &))
- {
---- trunk/pdns/pdns/logger.hh  (revision 306)
-+++ trunk/pdns/pdns/logger.hh  (revision 307)
-@@ -110,6 +110,7 @@
-   Logger& operator<<(const string &s);   //!< log a string
-   Logger& operator<<(int);   //!< log an int
-   Logger& operator<<(unsigned int);   //!< log an unsigned int
-+  Logger& operator<<(long);   //!< log an unsigned int
-   Logger& operator<<(unsigned long);   //!< log an unsigned int
-   Logger& operator<<(Urgency);    //!< set the urgency, << style
This page took 0.030397 seconds and 4 git commands to generate.