From 307242f21bf3ca7a0fb0f30da45b5956f47b0250 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Mon, 26 Jan 2004 11:28:44 +0000 Subject: fix --- kernel/dir.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kernel/dir.c') diff --git a/kernel/dir.c b/kernel/dir.c index 7e91639..608de2d 100644 --- a/kernel/dir.c +++ b/kernel/dir.c @@ -18,7 +18,7 @@ static struct inode_operations fuse_symlink_inode_operations; static struct file_operations fuse_dir_operations; -static struct dentry_operations fuse_dentry_opertations; +static struct dentry_operations fuse_dentry_operations; /* FIXME: This should be user configurable */ #define FUSE_REVALIDATE_TIME (1 * HZ) @@ -137,7 +137,7 @@ static int fuse_lookup_iget(struct inode *dir, struct dentry *entry, return err; entry->d_time = jiffies; - entry->d_op = &fuse_dentry_opertations; + entry->d_op = &fuse_dentry_operations; *inodep = inode; return 0; } @@ -769,7 +769,7 @@ static struct inode_operations fuse_symlink_inode_operations = #endif }; -static struct dentry_operations fuse_dentry_opertations = { +static struct dentry_operations fuse_dentry_operations = { .d_revalidate = fuse_dentry_revalidate, }; -- cgit v1.2.3