diff options
author | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2003-02-08 20:31:29 +0000 |
---|---|---|
committer | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2003-02-08 20:31:29 +0000 |
commit | 13bd19636bde9fea5821698cb77c32edee6a9ac9 (patch) | |
tree | 2e81c43d391ed220f6656502de14ddfbb0de4ecd /contrib/sendmail/src/trace.c | |
parent | 959366dcbe20824a331bcae977d662025850f481 (diff) |
Notes
Diffstat (limited to 'contrib/sendmail/src/trace.c')
-rw-r--r-- | contrib/sendmail/src/trace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/sendmail/src/trace.c b/contrib/sendmail/src/trace.c index 701a949d9676..a10b9f172f4f 100644 --- a/contrib/sendmail/src/trace.c +++ b/contrib/sendmail/src/trace.c @@ -15,7 +15,7 @@ #include <sm/debug.h> #include <sm/string.h> -SM_RCSID("@(#)$Id: trace.c,v 8.37 2001/09/11 04:05:17 gshapiro Exp $") +SM_RCSID("@(#)$Id: trace.c,v 8.37.4.1 2002/12/05 17:28:05 ca Exp $") static char *tTnewflag __P((char *)); static char *tToldflag __P((char *)); @@ -204,7 +204,7 @@ void tTflag(s) register char *s; { - if (*s == '\0') + if (s == NULL || *s == '\0') s = DefFlags; for (;;) |