diff --git a/src/Cedar/BridgeUnix.c b/src/Cedar/BridgeUnix.c index 7d272742..bb7ca970 100644 --- a/src/Cedar/BridgeUnix.c +++ b/src/Cedar/BridgeUnix.c @@ -935,7 +935,7 @@ ETH *OpenEthSolaris(char *name, bool local, bool tapmode, char *tapaddr) } // Attach to the device - if (DlipAttatchRequest(fd, devid) == false) + if (DlipAttachRequest(fd, devid) == false) { // Failed close(fd); @@ -1104,7 +1104,7 @@ bool DlipBindRequest(int fd) } // Attach to the device -bool DlipAttatchRequest(int fd, UINT devid) +bool DlipAttachRequest(int fd, UINT devid) { dl_attach_req_t req; struct strbuf ctl; diff --git a/src/Cedar/BridgeUnix.h b/src/Cedar/BridgeUnix.h index 7f9b0890..a768ad0f 100644 --- a/src/Cedar/BridgeUnix.h +++ b/src/Cedar/BridgeUnix.h @@ -227,7 +227,7 @@ void EthSendIpPacketInnerIpRaw(ETH *e, void *data, UINT size, USHORT protocol); #ifdef UNIX_SOLARIS // Function prototype for Solaris -bool DlipAttatchRequest(int fd, UINT devid); +bool DlipAttachRequest(int fd, UINT devid); bool DlipReceiveAck(int fd); bool DlipPromiscuous(int fd, UINT level); bool DlipBindRequest(int fd);