diff options
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-pmap.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-pmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-pmap.c b/xlators/mgmt/glusterd/src/glusterd-pmap.c index b95f73ea5a6..5fc7f2c48b5 100644 --- a/xlators/mgmt/glusterd/src/glusterd-pmap.c +++ b/xlators/mgmt/glusterd/src/glusterd-pmap.c @@ -10,6 +10,7 @@ #include "xlator.h" #include "glusterfs.h" +#include "syscall.h" #include "compat-errno.h" #include "glusterd.h" @@ -42,7 +43,7 @@ pmap_port_isfree (int port) return -1; ret = bind (sock, (struct sockaddr *)&sin, sizeof (sin)); - close (sock); + sys_close (sock); return (ret == 0) ? 1 : 0; } |