From: Josh Soref Date: Sun, 13 Jun 2021 21:32:22 +0000 (-0400) Subject: spelling: configurable X-Git-Tag: 1.8.0-rc.1~25^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b09372665460537790afe25be787c76eb65b765;p=thirdparty%2Fldns.git spelling: configurable Signed-off-by: Josh Soref --- diff --git a/lua/lua.c b/lua/lua.c index dbc28751..e7b04b54 100644 --- a/lua/lua.c +++ b/lua/lua.c @@ -284,7 +284,7 @@ l_server_socket_udp(lua_State *L) return 0; } - /* use default timeout - maybe this gets to be configureable */ + /* use default timeout - maybe this gets to be configurable */ timeout.tv_sec = LDNS_DEFAULT_TIMEOUT_SEC; timeout.tv_usec = LDNS_DEFAULT_TIMEOUT_USEC; @@ -317,7 +317,7 @@ l_client_socket_udp(lua_State *L) return 0; } - /* use default timeout - maybe this gets to be configureable */ + /* use default timeout - maybe this gets to be configurable */ timeout.tv_sec = LDNS_DEFAULT_TIMEOUT_SEC; timeout.tv_usec = LDNS_DEFAULT_TIMEOUT_USEC;