diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-05-15 23:13:36 -0400 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2020-05-18 18:21:53 +0000 |
commit | f4fbfd692fbc04a67e61d83ef477200967a6bc34 (patch) | |
tree | 06a0ee32dbcdc109384a1fa5eb4ce934e2381b5b /extras/libmemif/src/main.c | |
parent | 59a78e966c7813e1bd86310bc0edd8e60a506ccf (diff) |
libmemif: cleanup typos
cleaned up typos in documetation while doing a read through.
Type: style
Change-Id: Id8abbd8d6297ee10490c12a8e62097224f7ec1e1
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'extras/libmemif/src/main.c')
-rw-r--r-- | extras/libmemif/src/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/libmemif/src/main.c b/extras/libmemif/src/main.c index b80dd6481b8..ce96c371f36 100644 --- a/extras/libmemif/src/main.c +++ b/extras/libmemif/src/main.c @@ -110,7 +110,7 @@ const char *memif_errlist[ERRLIST_LEN] = { /* MEMIF_ERR_SUCCESS */ /* MEMIF_ERR_NOBUF */ "Not enough memif buffers. There are unreceived data in shared memory.", /* MEMIF_ERR_NOBUF_DET */ - "Not enough space for memif details in suplied buffer. String data might be malformed.", + "Not enough space for memif details in supplied buffer. String data might be malformed.", /* MEMIF_ERR_INT_WRITE */ "Send interrupt error.", /* MEMIF_ERR_MFMSG */ @@ -122,7 +122,7 @@ const char *memif_errlist[ERRLIST_LEN] = { /* MEMIF_ERR_SUCCESS */ /* MEMIF_ERR_ID */ "Unmatched interface id.", /* MEMIF_ERR_ACCSLAVE */ - "Slave cannot accept connection reqest.", + "Slave cannot accept connection request.", /* MEMIF_ERR_ALRCONN */ "Interface is already connected.", /* MEMIF_ERR_MODE */ @@ -281,7 +281,7 @@ memif_mod_epoll_fd (libmemif_main_t * lm, int fd, uint32_t events) DBG ("epoll_ctl: %s fd %d", strerror (errno), fd); return -1; } - DBG ("fd %d moddified on epoll", fd); + DBG ("fd %d modified on epoll", fd); return 0; } @@ -1204,7 +1204,7 @@ memif_create (memif_conn_handle_t * c, memif_conn_args_t * args, conn->index = index; - /* try connectiong to master */ + /* try connecting to master */ err = memif_request_connection (conn); if ((err != MEMIF_ERR_SUCCESS) && (lm->disconn_slaves == 0)) { |