From 3b49d9759de4c46deba252c5d3ecd1b76b2571ea Mon Sep 17 00:00:00 2001 From: jdolecek Date: Tue, 28 Sep 1999 05:44:21 +0000 Subject: [PATCH] actually call ntfs_toupper_init() from ntfs_init() --- sys/ntfs/ntfs_vfsops.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c index bf55b7b5dc7c..c03fe8472e20 100644 --- a/sys/ntfs/ntfs_vfsops.c +++ b/sys/ntfs/ntfs_vfsops.c @@ -1,4 +1,4 @@ -/* $NetBSD: ntfs_vfsops.c,v 1.12 1999/09/13 20:21:45 jdolecek Exp $ */ +/* $NetBSD: ntfs_vfsops.c,v 1.13 1999/09/28 05:44:21 jdolecek Exp $ */ /*- * Copyright (c) 1998, 1999 Semen Ustimenko @@ -200,6 +200,7 @@ static void ntfs_init () { ntfs_nthashinit(); + ntfs_toupper_init(); } #elif defined(__FreeBSD__) @@ -209,6 +210,7 @@ ntfs_init ( struct vfsconf *vcp ) { ntfs_nthashinit(); + ntfs_toupper_init(); return 0; }