summaryrefslogtreecommitdiff
path: root/ctdb
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2019-10-26 02:41:08 +0200
committerBjoern Jacke <bjacke@samba.org>2019-10-31 00:43:38 +0000
commit493705dc2746ee64a4e2cf1dc290009185853db2 (patch)
tree76b8614012d87a015c3ee84957c43034236f5603 /ctdb
parent540325d3cb4eee1964fc59a63d51289552293902 (diff)
downloadsamba-493705dc2746ee64a4e2cf1dc290009185853db2.tar.gz
ctdb/ib/ibwrapper_test.c: typo fixes
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'ctdb')
-rw-r--r--ctdb/ib/ibwrapper_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/ib/ibwrapper_test.c b/ctdb/ib/ibwrapper_test.c
index bc88dad051c..5eb3209b68c 100644
--- a/ctdb/ib/ibwrapper_test.c
+++ b/ctdb/ib/ibwrapper_test.c
@@ -467,7 +467,7 @@ static int ibwtest_get_address(const char *address, struct in_addr *addr)
if (inet_pton(AF_INET, address, addr) <= 0) {
struct hostent *he = gethostbyname(address);
if (he == NULL || he->h_length > sizeof(*addr)) {
- DEBUG(DEBUG_ERR, ("invalid nework address '%s'\n", address));
+ DEBUG(DEBUG_ERR, ("invalid network address '%s'\n", address));
return -1;
}
memcpy(addr, he->h_addr, he->h_length);