diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-05-29 23:03:06 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-12-04 22:48:07 +0000 |
commit | 6223766f96c469e42d6855c4b5933e7a9e06d621 (patch) | |
tree | ae12a375cc10d2a927c2840aae88f3962c74df92 /extras/libmemif/examples/icmp_responder-eb | |
parent | 2b29c9494e836a4f223c847c92eada9dc31e00a7 (diff) |
libmemif: clean up typos
Type: style
Change-Id: I0d25d922312dfd60a665916cf47c3d2faa29ea49
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'extras/libmemif/examples/icmp_responder-eb')
-rw-r--r-- | extras/libmemif/examples/icmp_responder-eb/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/libmemif/examples/icmp_responder-eb/main.c b/extras/libmemif/examples/icmp_responder-eb/main.c index 0e8b8f304c0..86a49da7935 100644 --- a/extras/libmemif/examples/icmp_responder-eb/main.c +++ b/extras/libmemif/examples/icmp_responder-eb/main.c @@ -336,7 +336,7 @@ mod_epoll_fd (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; } @@ -418,7 +418,7 @@ icmpr_memif_delete (long index) c->tx_buf_num = 0; int err; - /* disconenct then delete memif connection */ + /* disconnect then delete memif connection */ err = memif_delete (&c->conn); if (err != MEMIF_ERR_SUCCESS) INFO ("memif_delete: %s", memif_strerror (err)); @@ -994,7 +994,7 @@ poll_event (int timeout) if (evt.data.fd > 2) { /* event of memif control fd */ - /* convert epolle events to memif events */ + /* convert epoll events to memif events */ if (evt.events & EPOLLIN) events |= MEMIF_FD_EVENT_READ; if (evt.events & EPOLLOUT) |