* Renamed temporary KDL variable from _cookie to _volume in the "mount"

command.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25251 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-04-29 16:49:14 +00:00
parent 0b51ee4efd
commit bbc25eb650

View File

@ -2626,7 +2626,7 @@ _dump_mount(struct fs_mount *mount)
volume = volume->super_volume;
}
set_debug_variable("_cookie", (addr_t)mount->volume->private_volume);
set_debug_variable("_volume", (addr_t)mount->volume->private_volume);
set_debug_variable("_root", (addr_t)mount->root_vnode);
set_debug_variable("_covers", (addr_t)mount->covers_vnode);
set_debug_variable("_partition", (addr_t)mount->partition);
@ -4495,7 +4495,7 @@ create_vnode(struct vnode *directory, const char *name, int openMode,
status = lookup_dir_entry(directory, name, &vnode);
if (status == B_OK) {
VNodePutter putter(vnode);
if ((openMode & O_EXCL) != 0)
return B_FILE_EXISTS;