Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/arch/vax/boot/xxboot/bootxx.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/arch/vax/boot/xxboot/bootxx.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- src/sys/arch/vax/boot/xxboot/bootxx.c 2009/09/18 21:40:09 1.36 +++ src/sys/arch/vax/boot/xxboot/bootxx.c 2013/06/28 01:13:40 1.37 @@ -1,4 +1,4 @@ -/* $NetBSD: bootxx.c,v 1.36 2009/09/18 21:40:09 mhitch Exp $ */ +/* $NetBSD: bootxx.c,v 1.37 2013/06/28 01:13:40 matt Exp $ */ /*- * Copyright (c) 1982, 1986 The Regents of the University of California. @@ -186,7 +186,8 @@ die: */ struct fs_ops file_system[] = { #ifdef NEED_UFS - { ufs_open, 0, ufs_read, 0, 0, ufs_stat }, + { ffsv1_open, 0, ffsv1_read, 0, 0, ffsv1_stat }, + //{ ffsv2_open, 0, ffsv2_read, 0, 0, ffsv2_stat }, #endif #ifdef NEED_CD9660 { cd9660_open, 0, cd9660_read, 0, 0, cd9660_stat }, @@ -196,7 +197,7 @@ struct fs_ops file_system[] = { #endif }; -int nfsys = (sizeof(file_system) / sizeof(struct fs_ops)); +int nfsys = __arraycount(file_system); #if 0 int tar_open(char *path, struct open_file *f);