summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ppp/command.c')
-rw-r--r--usr.sbin/ppp/command.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c
index 6c37b10..1a9008e 100644
--- a/usr.sbin/ppp/command.c
+++ b/usr.sbin/ppp/command.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: command.c,v 1.205 1999/08/05 10:32:09 brian Exp $
+ * $Id: command.c,v 1.206 1999/08/17 14:59:05 brian Exp $
*
*/
#include <sys/param.h>
@@ -144,7 +144,7 @@
#define NEG_VJCOMP 53
const char Version[] = "2.23";
-const char VersionDate[] = "$Date: 1999/08/05 10:32:09 $";
+const char VersionDate[] = "$Date: 1999/08/17 14:59:05 $";
static int ShowCommand(struct cmdargs const *);
static int TerminalCommand(struct cmdargs const *);
@@ -1605,10 +1605,17 @@ SetVariable(struct cmdargs const *arg)
break;
case VAR_IDLETIMEOUT:
- if (arg->argc > arg->argn+1)
+ if (arg->argc > arg->argn+2)
err = "Too many idle timeout values\n";
- else if (arg->argc == arg->argn+1)
- bundle_SetIdleTimer(arg->bundle, atoi(argp));
+ else if (arg->argc == arg->argn)
+ err = "Too few idle timeout values\n";
+ else {
+ int timeout, min;
+
+ timeout = atoi(argp);
+ min = arg->argc == arg->argn + 2 ? atoi(arg->argv[arg->argn + 1]) : -1;
+ bundle_SetIdleTimer(arg->bundle, timeout, min);
+ }
if (err)
log_Printf(LogWARN, err);
break;
OpenPOWER on IntegriCloud