From owner-cvs-all Mon Dec 20 22:29: 3 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 30F0D152C3; Mon, 20 Dec 1999 22:29:01 -0800 (PST) (envelope-from chris@FreeBSD.org) Received: (from chris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA13311; Mon, 20 Dec 1999 22:29:01 -0800 (PST) (envelope-from chris@FreeBSD.org) Message-Id: <199912210629.WAA13311@freefall.freebsd.org> From: Chris Costello Date: Mon, 20 Dec 1999 22:29:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/kernfs kernfs_vnops.c src/sys/miscfs/portal portal_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk chris 1999/12/20 22:29:00 PST Modified files: sys/miscfs/kernfs kernfs_vnops.c sys/miscfs/portal portal_vnops.c Log: Fix a typo that was doing something kind of silly, and that is initializing the creation time for files to the uninitialized value: vap->va_ctime = vap->va_ctime; Changed to what was intended, assigning it to the modification time (thus making all three values of access time, modification time and creation time the same thing). Reviewed by: grog Revision Changes Path 1.43 +2 -2 src/sys/miscfs/kernfs/kernfs_vnops.c 1.38 +2 -2 src/sys/miscfs/portal/portal_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message