From f9e4a0ca7dfba7eeab5d2cd78f116b951ccb2cfd Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Tue, 18 Nov 1997 19:38:27 +0000 Subject: [PATCH] Allow zero args to "cvs log". --- usr.sbin/ppp/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c index 2548ba99006..5b05036f3df 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;