diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-20 12:22:37 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-20 12:22:37 +0000 |
commit | 256739a410f38f424e30011e329e41647f3cd9ff (patch) | |
tree | a63030335ff809c9aee117c57d02b85e8705c6b1 /kernel/inode.c | |
parent | f3845c478b3c1eb16668d587a2a1d002b72401a5 (diff) | |
download | libfuse-256739a410f38f424e30011e329e41647f3cd9ff.tar.gz |
fix
Diffstat (limited to 'kernel/inode.c')
-rw-r--r-- | kernel/inode.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/kernel/inode.c b/kernel/inode.c index 3775733..55a283b 100644 --- a/kernel/inode.c +++ b/kernel/inode.c @@ -359,15 +359,11 @@ static struct fuse_conn *new_conn(void) static struct fuse_conn *get_conn(struct file *file, struct super_block *sb) { struct fuse_conn *fc; - struct inode *ino; - ino = file->f_dentry->d_inode; if (file->f_op != &fuse_dev_operations) { printk("FUSE: bad communication file descriptor\n"); - printk("fuse_dev_operations: %p file->f_op: %p\n", - &fuse_dev_operations, file->f_op); return NULL; - } + } fc = new_conn(); if (fc == NULL) { printk("FUSE: failed to allocate connection data\n"); |