Browse Source

Merge branch 'trac805-merged' of ssh://git.bind10.isc.org/var/bind10/git/bind10 into trac805merge

JINMEI Tatuya 13 years ago
parent
commit
7c98c9fd24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/server_common/socket_request.cc

+ 1 - 1
src/lib/server_common/socket_request.cc

@@ -262,7 +262,7 @@ public:
         // Note: we should eventually unify this level of details into a single
         // module.  Setting a single filter here should be considered a short
         // term workaround.
-        if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
+        if (std::signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
             isc_throw(Unexpected, "Failed to filter SIGPIPE: " <<
                       strerror(errno));
         }