aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-09-10 10:54:33 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-09-13 05:23:11 +0000
commita730e67d90ae0ea0533be1205779d41bfb01375f (patch)
treef79da51262123c14110387c2ec6f86632f4e8c20 /tools
parent9b2289cdb6f8dca9489ee91e566d91bb51b2238c (diff)
downloadsrc-a730e67d90ae0ea0533be1205779d41bfb01375f.tar.gz
src-a730e67d90ae0ea0533be1205779d41bfb01375f.zip
tools: Remove a double words
- s/to to/to/ - s/to to/to do/ in an error message (cherry picked from commit 08cb3ac76c6e680316b561fda196e517e7bd1506)
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/netmap/pkt-gen.c2
-rw-r--r--tools/tools/netrate/tcpp/tcpp_server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/tools/netmap/pkt-gen.c b/tools/tools/netmap/pkt-gen.c
index f62ed781061b..4518c2fd4219 100644
--- a/tools/tools/netmap/pkt-gen.c
+++ b/tools/tools/netmap/pkt-gen.c
@@ -2808,7 +2808,7 @@ tap_alloc(char *dev)
/* try to create the device */
if( (err = ioctl(fd, TUNSETIFF, (void *) &ifr)) < 0 ) {
- D("failed to to a TUNSETIFF: %s", strerror(errno));
+ D("failed to do a TUNSETIFF: %s", strerror(errno));
close(fd);
return err;
}
diff --git a/tools/tools/netrate/tcpp/tcpp_server.c b/tools/tools/netrate/tcpp/tcpp_server.c
index 0a79fbba5e30..eca2c3d469db 100644
--- a/tools/tools/netrate/tcpp/tcpp_server.c
+++ b/tools/tools/netrate/tcpp/tcpp_server.c
@@ -54,7 +54,7 @@
* Server side -- create a pool of processes, each listening on its own TCP
* port number for new connections. The first 8 bytes of each connection
* will be a network byte order length, then there will be that number of
- * bytes of data. We use non-blocking sockets with kqueue to to avoid the
+ * bytes of data. We use non-blocking sockets with kqueue to avoid the
* overhead of threading or more than one process per processor, which makes
* things a bit awkward when dealing with data we care about. As such, we
* read into a small character buffer which we then convert to a length once