Deleted Added
sdiff udiff text old ( 66494 ) new ( 82017 )
full compact
1/*
2 * Copyright (c) 1998-2000 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1983, 1995-1997 Eric P. Allman. All rights reserved.
5 * Copyright (c) 1988, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * By using this file, you agree to the terms and conditions set
9 * forth in the LICENSE file which can be found at the top level of
10 * the sendmail distribution.
11 *
12 */
13
14#ifndef lint
15static char id[] = "@(#)$Id: trace.c,v 8.20.22.2 2000/09/17 17:04:27 gshapiro Exp $";
16#endif /* ! lint */
17
18#include <sendmail.h>
19
20/*
21** TtSETUP -- set up for trace package.
22**
23** Parameters:

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

58** Side Effects:
59** sets/clears trace flags.
60*/
61
62void
63tTflag(s)
64 register char *s;
65{
66 int first, last;
67 register unsigned int i;
68
69 if (*s == '\0')
70 s = DefFlags;
71
72 for (;;)
73 {
74 /* find first flag to set */
75 i = 0;
76 while (isascii(*s) && isdigit(*s))
77 i = i * 10 + (*s++ - '0');
78 first = i;
79
80 /* find last flag to set */
81 if (*s == '-')
82 {
83 i = 0;
84 while (isascii(*++s) && isdigit(*s))
85 i = i * 10 + (*s - '0');
86 }
87 last = i;
88
89 /* find the level to set it to */
90 i = 1;
91 if (*s == '.')
92 {
93 i = 0;

--- 19 unchanged lines hidden ---