summaryrefslogtreecommitdiff
path: root/devel/bmake/files/targ.c
diff options
context:
space:
mode:
Diffstat (limited to 'devel/bmake/files/targ.c')
-rw-r--r--devel/bmake/files/targ.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/devel/bmake/files/targ.c b/devel/bmake/files/targ.c
index 3402a9ab143..7a45320331f 100644
--- a/devel/bmake/files/targ.c
+++ b/devel/bmake/files/targ.c
@@ -1,4 +1,4 @@
-/* $NetBSD: targ.c,v 1.1.1.5 2009/09/18 20:55:31 joerg Exp $ */
+/* $NetBSD: targ.c,v 1.1.1.6 2011/06/18 22:18:10 bsiegert Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: targ.c,v 1.1.1.5 2009/09/18 20:55:31 joerg Exp $";
+static char rcsid[] = "$NetBSD: targ.c,v 1.1.1.6 2011/06/18 22:18:10 bsiegert Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)targ.c 8.2 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: targ.c,v 1.1.1.5 2009/09/18 20:55:31 joerg Exp $");
+__RCSID("$NetBSD: targ.c,v 1.1.1.6 2011/06/18 22:18:10 bsiegert Exp $");
#endif
#endif /* not lint */
#endif
@@ -248,8 +248,9 @@ Targ_NewGN(const char *name)
gn->centurion = NULL;
gn->made = UNMADE;
gn->flags = 0;
- gn->checked = 0;
- gn->mtime = gn->cmtime = 0;
+ gn->checked = 0;
+ gn->mtime = 0;
+ gn->cmgn = NULL;
gn->iParents = Lst_Init(FALSE);
gn->cohorts = Lst_Init(FALSE);
gn->parents = Lst_Init(FALSE);