summaryrefslogtreecommitdiffstats
path: root/src/stun
diff options
context:
space:
mode:
authorFrédéric Brière <fbriere@fbriere.net>2016-10-05 19:53:54 -0400
committerFrédéric Brière <fbriere@fbriere.net>2018-02-09 13:12:00 -0500
commit1082c44de0fadd3eb45a697c55c9b67603ae7a19 (patch)
treef40b852e475f1f35c9475dd295c8c3d3eb36c5e7 /src/stun
parent3ba5150d0fbc8f88deebd20fc5ac591209444f22 (diff)
downloadtwinkle-1082c44de0fadd3eb45a697c55c9b67603ae7a19.tar
twinkle-1082c44de0fadd3eb45a697c55c9b67603ae7a19.tar.gz
twinkle-1082c44de0fadd3eb45a697c55c9b67603ae7a19.tar.lz
twinkle-1082c44de0fadd3eb45a697c55c9b67603ae7a19.tar.xz
twinkle-1082c44de0fadd3eb45a697c55c9b67603ae7a19.zip
Disambiguate reference to ::bind()
There's a potential ambiguity between ::bind() and std::bind() if <functional> happens to be included beforehand (as is the case with libc++).
Diffstat (limited to 'src/stun')
-rw-r--r--src/stun/udp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stun/udp.cxx b/src/stun/udp.cxx
index 7a75134..1472b13 100644
--- a/src/stun/udp.cxx
+++ b/src/stun/udp.cxx
@@ -64,7 +64,7 @@ openPort( unsigned short port, unsigned int interfaceIp, bool verbose )
}
}
- if ( bind( fd,(struct sockaddr*)&addr, sizeof(addr)) != 0 )
+ if ( ::bind( fd,(struct sockaddr*)&addr, sizeof(addr)) != 0 )
{
int e = getErrno();