Fix typo accetpedFd -> acceptedFd

This commit is contained in:
Brenton Bostick
2022-12-09 06:56:31 -05:00
parent 8952a6bf95
commit d00f72ae92

View File

@@ -232,12 +232,12 @@ public class ZeroTierSocket {
if (_zfd < 0) {
throw new IOException("Invalid socket (fd < 0)");
}
int accetpedFd = -1;
int acceptedFd = -1;
ZeroTierSocketAddress addr = new ZeroTierSocketAddress();
if ((accetpedFd = ZeroTierNative.zts_bsd_accept(_zfd, addr)) < 0) {
throw new IOException("Error while accepting connection (" + accetpedFd + ")");
if ((acceptedFd = ZeroTierNative.zts_bsd_accept(_zfd, addr)) < 0) {
throw new IOException("Error while accepting connection (" + acceptedFd + ")");
}
return new ZeroTierSocket(_family, _type, _protocol, accetpedFd);
return new ZeroTierSocket(_family, _type, _protocol, acceptedFd);
}
/**