summaryrefslogtreecommitdiff
path: root/net/powerdns-recursor/patches/patch-rec__channel.cc
blob: b8abbe763d96f683cb729cd5d95919579db3d5fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$NetBSD: patch-rec__channel.cc,v 1.2 2013/06/26 15:52:22 joerg Exp $

We need to include cstring

--- rec_channel.cc.orig	2010-09-21 16:22:09.000000000 +0000
+++ rec_channel.cc
@@ -4,6 +4,7 @@
 #include "misc.hh"
 #include <string.h>
 #include <cstdlib>
+#include <cstring>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -46,7 +47,7 @@ int RecursorControlChannel::listen(const
   d_local.sun_family=AF_UNIX;
   strcpy(d_local.sun_path, fname.c_str());
     
-  if(bind(d_fd, (sockaddr*)&d_local,sizeof(d_local))<0) 
+  if(::bind(d_fd, (sockaddr*)&d_local,sizeof(d_local))<0) 
     throw AhuException("Unable to bind to controlsocket '"+fname+"': "+string(strerror(errno)));
 
   return d_fd;
@@ -84,7 +85,7 @@ void RecursorControlChannel::connect(con
   if(err < 0 && errno!=ENOENT)
     throw AhuException("Unable to remove local controlsocket: "+string(strerror(errno)));
 
-  if(bind(d_fd, (sockaddr*)&d_local,sizeof(d_local))<0) {
+  if(::bind(d_fd, (sockaddr*)&d_local,sizeof(d_local))<0) {
     unlink(d_local.sun_path);
     close(d_fd);
     d_fd=-1;