diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-10-06 06:00:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-10-06 06:00:27 +0000 |
commit | 6a9e56728f35d2e4d6168e97c2c4dbdfa208404c (patch) | |
tree | 7dc9b91602f02a4a12efecc67f09e63c93165708 | |
parent | 74456902e05f6d88bde0105106d1f3cab198a677 (diff) |
Re-enable PASSWORD_TIMEOUT now that the fdesc bug is fixed.
-rw-r--r-- | gnu/usr.bin/sudo/sudo/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/sudo/sudo/options.h b/gnu/usr.bin/sudo/sudo/options.h index 763fe7a9cb1..255f2644f5d 100644 --- a/gnu/usr.bin/sudo/sudo/options.h +++ b/gnu/usr.bin/sudo/sudo/options.h @@ -17,7 +17,7 @@ * * Please send bugs, changes, problems to sudo-bugs@courtesan.com * - * $Id: options.h,v 1.5 1997/03/02 05:16:20 millert Exp $ + * $Id: options.h,v 1.6 1997/10/06 06:00:26 millert Exp $ */ #ifndef _SUDO_OPTIONS_H @@ -44,7 +44,7 @@ #define SHORT_MESSAGE /* short sudo message, no copyright printed */ /*#define NO_MESSAGE /* no sudo "lecture" message */ #define TIMEOUT 5 /* minutes before sudo asks for passwd again */ -#define PASSWORD_TIMEOUT 0 /* passwd prompt timeout (in minutes) */ +#define PASSWORD_TIMEOUT 5 /* passwd prompt timeout (in minutes) */ #define TRIES_FOR_PASSWORD 3 /* number of tries to enter passwd correctly */ #define USE_INSULTS /* insult the user for incorrect passwords */ #define CLASSIC_INSULTS /* sudo "classic" insults--need USE_INSULTS */ |