From 5291a9a0ac963f987ffce26bd67384b3fcc30a24 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Sun, 16 Apr 1995 11:25:47 +0000 Subject: [PATCH] Make vegetarian and animal rights people happy and use 0xdeadc0de instead of 0xdeadbeef as the 'spare' value. --- sys/ufs/lfs/lfs_alloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/ufs/lfs/lfs_alloc.c b/sys/ufs/lfs/lfs_alloc.c index 9e3d1ed21793..fb60c3dfc954 100644 --- a/sys/ufs/lfs/lfs_alloc.c +++ b/sys/ufs/lfs/lfs_alloc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_alloc.c 8.4 (Berkeley) 1/4/94 - * $Id: lfs_alloc.c,v 1.6 1995/03/19 14:29:16 davidg Exp $ + * $Id: lfs_alloc.c,v 1.7 1995/03/28 07:58:02 bde Exp $ */ #include @@ -179,8 +179,8 @@ lfs_vcreate(mp, ino, vpp) ip->i_flag = IN_MODIFIED; ip->i_dev = ump->um_dev; ip->i_number = ip->i_din.di_inumber = ino; -ip->i_din.di_spare[0] = 0xdeadbeef; -ip->i_din.di_spare[1] = 0xdeadbeef; +ip->i_din.di_spare[0] = 0xdeadc0de; +ip->i_din.di_spare[1] = 0xdeadc0de; ip->i_lfs = ump->um_lfs; #ifdef QUOTA for (i = 0; i < MAXQUOTAS; i++)