diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-26 20:47:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-26 20:47:45 +0000 |
commit | 7e9df75a90f98feb43faf27a40668b98be6a644d (patch) | |
tree | 49232bf625aff36f54fdf9a9ab032d4ffd4e6bbd /libexec | |
parent | ab43a29b969e743d29d43b321883ca1dda79faad (diff) |
Typo: radius-timout -> radius-timeout; noted by brad@
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/login_radius/login_radius.8 | 4 | ||||
-rw-r--r-- | libexec/login_radius/raddauth.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libexec/login_radius/login_radius.8 b/libexec/login_radius/login_radius.8 index f561fb67b92..51a36d558b2 100644 --- a/libexec/login_radius/login_radius.8 +++ b/libexec/login_radius/login_radius.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: login_radius.8,v 1.2 2001/07/08 20:57:08 millert Exp $ +.\" $OpenBSD: login_radius.8,v 1.3 2001/07/26 20:47:44 millert Exp $ .\" .\" Copyright (c) 1996 Berkeley Software Design, Inc. All rights reserved. .\" @@ -127,7 +127,7 @@ If not, .Nm will prompt the user for the password before sending the request (along with the password) to the radius server. -.It radius-timout +.It radius-timeout Number of seconds to wait for a response from the radius server. Defaults to 2 seconds. .It radius-retries diff --git a/libexec/login_radius/raddauth.c b/libexec/login_radius/raddauth.c index 5b769d72646..c8883b0d41e 100644 --- a/libexec/login_radius/raddauth.c +++ b/libexec/login_radius/raddauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raddauth.c,v 1.3 2001/07/09 18:59:25 millert Exp $ */ +/* $OpenBSD: raddauth.c,v 1.4 2001/07/26 20:47:44 millert Exp $ */ /*- * Copyright (c) 1996, 1997 Berkeley Software Design, Inc. All rights reserved. @@ -152,7 +152,7 @@ raddauth(char *username, char *class, char *style, char *challenge, return (1); } - timeout = login_getcapnum(lc, "radius-timout", 2, 2); + timeout = login_getcapnum(lc, "radius-timeout", 2, 2); retries = login_getcapnum(lc, "radius-retries", 6, 6); if (timeout < 1) timeout = 1; |