diff options
author | Jean-Pierre André <jpandre@users.sourceforge.net> | 2013-06-23 11:56:55 +0200 |
---|---|---|
committer | Jean-Pierre André <jpandre@users.sourceforge.net> | 2013-06-23 11:56:55 +0200 |
commit | d29f1146821397445eac789490bf201b4e0294dc (patch) | |
tree | c85bdc218c71d8db917807e8b43264b0d80a7be0 | |
parent | 8eaabb6f6ee90fba52632cf92521e56540d76cb0 (diff) | |
download | illumos-fusefs-d29f1146821397445eac789490bf201b4e0294dc.tar.gz |
Fixed logging the data location when starting
-rw-r--r-- | kernel/fuse_ini.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/fuse_ini.c b/kernel/fuse_ini.c index 34399d7..423f587 100644 --- a/kernel/fuse_ini.c +++ b/kernel/fuse_ini.c @@ -71,8 +71,8 @@ _init(void) cmn_err(CE_CONT,"Fuse kernel %s interface %d.%d\n", FUSE_SOLARIS_VERSION, FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION); - cmn_err(CE_CONT,"Fuse kernel init at 0x%lx, modldrv at 0x%lx\n", - (long)_init,(long)&fuse_dev_drv_modldrv); + cmn_err(CE_CONT,"Fuse kernel init at 0x%lx, vfs_modldrv at 0x%lx\n", + (long)_init,(long)&fuse_vfs_modldrv); fuse_global_init(); if ((rv = mod_install(&ml)) != 0) { fuse_global_fini(); |