From: Björn Jacke Date: Sat, 26 Oct 2019 00:41:08 +0000 (+0200) Subject: ctdb/ib/ibwrapper_test.c: typo fixes X-Git-Tag: talloc-2.3.1~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=493705dc2746ee64a4e2cf1dc290009185853db2;p=thirdparty%2Fsamba.git ctdb/ib/ibwrapper_test.c: typo fixes Signed-off-by: Bjoern Jacke Reviewed-by: Martin Schwenke --- 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);