summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-04-28 22:33:32 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:20:45 +0900
commitd7e183bfdf2677774cbcac1ea827deb541cc6d3b (patch)
tree16e395d0a968190318a0220fe8cc42b32ec80d41
parentd5c010422acb68e9cd33556866667e17a3b340e8 (diff)
downloadmruby-d7e183bfdf2677774cbcac1ea827deb541cc6d3b.tar.gz
mruby-d7e183bfdf2677774cbcac1ea827deb541cc6d3b.zip
Fixed wrong condition in #4981.
-rw-r--r--mrbgems/mruby-io/test/mruby_io_test.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/mrbgems/mruby-io/test/mruby_io_test.c b/mrbgems/mruby-io/test/mruby_io_test.c
index 3a98820ae..d8971bccf 100644
--- a/mrbgems/mruby-io/test/mruby_io_test.c
+++ b/mrbgems/mruby-io/test/mruby_io_test.c
@@ -73,7 +73,7 @@ int socket_available_p;
#if !defined(_WIN32) && !defined(_WIN64)
static int mrb_io_socket_available()
{
- int fd, retval = 1;
+ int fd, retval = 0;
struct sockaddr_un sun0;
char socketname[] = "tmp.mruby-io-socket-ok.XXXXXXXX";
if (!(fd = mkstemp(socketname))) {
@@ -87,11 +87,10 @@ static int mrb_io_socket_available()
}
sun0.sun_family = AF_UNIX;
strncpy(sun0.sun_path, socketname, sizeof(sun0.sun_path));
- if (bind(fd, (struct sockaddr *)&sun0, sizeof(sun0)) == -1) {
- retval = 0;
+ if (bind(fd, (struct sockaddr *)&sun0, sizeof(sun0)) == 0) {
+ retval = 1;
}
sock_test_out:
- retval = 0;
unlink(socketname);
close(fd);
return retval;