Browse Source

Codestyle fix

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/vorner-recursor-timeouts@3403 e5f2f494-b856-4b98-b285-d166d9295462
Michal Vaner 14 years ago
parent
commit
f467ed3918
2 changed files with 4 additions and 4 deletions
  1. 2 2
      src/lib/asiolink/asiolink.cc
  2. 2 2
      src/lib/asiolink/internal/udpdns.h

+ 2 - 2
src/lib/asiolink/asiolink.cc

@@ -231,7 +231,7 @@ namespace {
 
 // This is just temporary so the interface change does not propagate too far
 struct ServerNotify : public UDPQuery::Callback {
-        ServerNotify(DNSServer *server) :
+        ServerNotify(DNSServer* server) :
             server_(server)
         { }
         virtual void operator()(UDPQuery::Result result) {
@@ -241,7 +241,7 @@ struct ServerNotify : public UDPQuery::Callback {
     private:
         // FIXME This is said it does problems when it is shared pointer, as
         // it is destroyed too soon. But who deletes it now?
-        DNSServer *server_;
+        DNSServer* server_;
 };
 
 }

+ 2 - 2
src/lib/asiolink/internal/udpdns.h

@@ -210,7 +210,7 @@ public:
                       const isc::dns::Question& q,
                       const IOAddress& addr, uint16_t port,
                       isc::dns::OutputBufferPtr buffer,
-                      Callback *callback, int timeout = -1);
+                      Callback* callback, int timeout = -1);
     void operator()(asio::error_code ec = asio::error_code(),
                     size_t length = 0);
     /// Terminate the query.
@@ -247,7 +247,7 @@ private:
     boost::shared_array<char> data_;
 
     // This will be called when we are done.
-    Callback *callback_;
+    Callback* callback_;
 };
 }