debug.c (9caee2ece77615135bbc2531d21b62e81aed5cb5) debug.c (c3759b3a3f3937321c2d00b5f26ec4ab076f2883)
1
2/*
3 * debug.c
4 *
5 * Copyright (c) 1996-1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

--- 40 unchanged lines hidden (view full) ---

49const struct ngcmd debug_cmd = {
50 DebugCmd,
51 "debug [level]",
52 "Get/set debugging verbosity level",
53 "Without any argument, this command displays the current"
54 " debugging verbosity level. If the argument is ``+'' or ``-''"
55 " the debug level is incremented or decremented; otherwise,"
56 " it must be an absolute numerical level.",
1
2/*
3 * debug.c
4 *
5 * Copyright (c) 1996-1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

--- 40 unchanged lines hidden (view full) ---

49const struct ngcmd debug_cmd = {
50 DebugCmd,
51 "debug [level]",
52 "Get/set debugging verbosity level",
53 "Without any argument, this command displays the current"
54 " debugging verbosity level. If the argument is ``+'' or ``-''"
55 " the debug level is incremented or decremented; otherwise,"
56 " it must be an absolute numerical level.",
57 {}
57 { NULL }
58};
59
60static int
61DebugCmd(int ac, char **av)
62{
63 int level;
64
65 /* Get arguments */

--- 19 unchanged lines hidden ---
58};
59
60static int
61DebugCmd(int ac, char **av)
62{
63 int level;
64
65 /* Get arguments */

--- 19 unchanged lines hidden ---