diff options
Diffstat (limited to 'tapset/socket.stp')
-rw-r--r-- | tapset/socket.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/socket.stp b/tapset/socket.stp index e18d99ee..77e322d2 100644 --- a/tapset/socket.stp +++ b/tapset/socket.stp @@ -898,7 +898,7 @@ probe begin(-1001) function _success_check(ret:long) { - return (ret > 0 ? 1 : 0) + return (ret >= 0 ? 1 : 0) } function _get_sock_addr:long (file:long) |