Browse Source

[master] Fix build issue on solaris-gcc

Jelte Jansen 14 years ago
parent
commit
8af77178ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/nsas/zone_entry.cc

+ 1 - 1
src/lib/nsas/zone_entry.cc

@@ -122,7 +122,7 @@ class ZoneEntry::ResolverCallback :
                  * do), so we can just reuse them instead of looking them up in
                  * the table or creating them.
                  */
-                map<string, NameserverPtr> old;
+                std::map<string, NameserverPtr> old;
                 BOOST_FOREACH(const NameserverPtr& ptr, entry_->nameservers_) {
                     old[ptr->getName()] = ptr;
                 }