From 309e2a11eb14aba1b937d6a95c84db797f0a2ccb Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 02:45:10 +0000 Subject: [PATCH] spelling: attach --- src/Cedar/BridgeUnix.c | 4 ++-- src/Cedar/BridgeUnix.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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);