Subject: CVS commit: basesrc/usr.sbin/dumpfs
To: None <source-changes@netbsd.org>
From: Luke Mewburn <lukem@netbsd.org>
List: source-changes
Date: 07/26/2001 08:49:00
Module Name:	basesrc
Committed By:	lukem
Date:		Thu Jul 26 05:49:00 UTC 2001

Modified Files:
	basesrc/usr.sbin/dumpfs: dumpfs.c

Log Message:
fix time display bug introduced in previous commit [hi christos! ;]
because it was using an unitialised variable.  change:
	ctime(&t); foo.bar = t
into
	t = foo.bar; ctime(&t)


To generate a diff of this commit:
cvs rdiff -r1.23 -r1.24 basesrc/usr.sbin/dumpfs/dumpfs.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.