Skip to content

Commit 33226f2

Browse files
committed
[#231] typo fix
1 parent bc834b2 commit 33226f2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

common/tests/option_unittest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ ATF_TC(parse_X);
134134
ATF_TC_HEAD(parse_X, tc)
135135
{
136136
atf_tc_set_md_var(tc, "descr",
137-
"Verify parse_X survices option too big.");
137+
"Verify parse_X services option too big.");
138138
}
139139

140140
/* Initializes a parse struct from an input buffer of data. */

dhcpctl/dhcpctl.3

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ authenticator has been created for the connection, then it is given as the 4th
268268
argument. On a successful return the address pointed at by the first
269269
argument will have a new connection object assigned to it.
270270
How long the function waits for complete the connection is dictated by the value
271-
of the parameter, \fBtimeout\fR. If the value is null, it will wait indefinetly
271+
of the parameter, \fBtimeout\fR. If the value is null, it will wait indefinitely
272272
Otherwise it will wait for the amount of time specified by \fBtimeout\fR
273273
(tv_sec:tv_usec). Values of zero for both fields are valid but not recommended.
274274
An example is shown below:
@@ -333,7 +333,7 @@ to the server is lost.
333333
.Fn dhcpctl_timed_wait_for_completion
334334
flushes a pending message to the server and waits for the response. How long
335335
the function waits for a response is dictated by the value of the third
336-
parameter, \fBtimeout\fR. If the value is null, it will wait indefinetly or
336+
parameter, \fBtimeout\fR. If the value is null, it will wait indefinitely or
337337
until the connection is lost. Otherwise it will wait for the amount of time
338338
specified by \fBtimeout\fR (tv_sec:tv_usec). Values of zero for both fields
339339
are valid but not recommended. The result of the request as processed on the

dhcpctl/dhcpctl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ dhcpctl_status dhcpctl_connect (dhcpctl_handle *connection,
155155
information.
156156
How long the function waits for the connection to complete is
157157
dictated by the value of the parameter, t. If the value is nul,
158-
it will wait indefinetly. Otherwise it will wait for the amount
158+
it will wait indefinitely. Otherwise it will wait for the amount
159159
of time specified by t (tv_sec:tv_usec). Values of zero for both
160160
fields are valid but not recommended. */
161161
dhcpctl_status dhcpctl_timed_connect (dhcpctl_handle *connection,
@@ -235,7 +235,7 @@ dhcpctl_status dhcpctl_wait_for_completion (dhcpctl_handle h,
235235
will also be either zero for success or nonzero for some kind
236236
of failure. How long the function waits for a response is
237237
dictated by the value of the parameter, t. If the value is nul,
238-
it will wait indefinetly or until the connection is lost.
238+
it will wait indefinitely or until the connection is lost.
239239
Otherwise it will wait for the amount of time specified by t
240240
(tv_sec:tv_usec). Values of zero for both fields are valid
241241
but not recommended. The result of the request as processed on the

0 commit comments

Comments
 (0)