From 13ed482774a87185fb4753d84444741b1eb93780 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Sat, 20 Nov 2004 11:12:21 +0000 Subject: fix --- kernel/util.c | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'kernel/util.c') diff --git a/kernel/util.c b/kernel/util.c index ac6455d..fa5b082 100644 --- a/kernel/util.c +++ b/kernel/util.c @@ -9,7 +9,7 @@ #include "fuse_i.h" #include -#include +#include MODULE_AUTHOR("Miklos Szeredi "); MODULE_DESCRIPTION("Filesystem in Userspace"); @@ -23,9 +23,11 @@ int __init fuse_init(void) { int res; - printk(KERN_DEBUG "fuse init %s (API version %i.%i)\n", - FUSE_VERSION, + printk("fuse init (API version %i.%i)\n", FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION); +#ifndef FUSE_MAINLINE + printk("fuse distribution version: %s\n", FUSE_VERSION); +#endif spin_lock_init(&fuse_lock); res = fuse_fs_init(); @@ -54,10 +56,3 @@ void __exit fuse_exit(void) module_init(fuse_init); module_exit(fuse_exit); - -/* - * Local Variables: - * indent-tabs-mode: t - * c-basic-offset: 8 - * End: - */ -- cgit v1.2.3