From 744d2dfbcccf46e0de52e30f1b7b84e0f04dfdab Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 18 Nov 1997 19:38:27 +0000 Subject: Allow zero args to "cvs log". --- usr.sbin/ppp/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/ppp') diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c index 2548ba9..5b05036 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.102 1997/11/13 14:43:14 brian Exp $ + * $Id: command.c,v 1.103 1997/11/18 00:19:28 brian Exp $ * */ #include @@ -1013,7 +1013,7 @@ SetLogLevel(struct cmdtab const * list, int argc, char **argv) void (*DiscardAll)(void); res = 0; - if (strcasecmp(argv[0], "local")) { + if (argc == 0 || strcasecmp(argv[0], "local")) { Discard = LogDiscard; Keep = LogKeep; DiscardAll = LogDiscardAll; -- cgit v1.1