Merge branch '2821_wrong_second_ftp_connection'

* 2821_wrong_second_ftp_connection:
  Ticket #2821: Fixed defect: ftp to a second site does not work
This commit is contained in:
Slava Zanko 2012-06-06 12:09:57 +03:00
commit 48b4320f7d
1 changed files with 3 additions and 1 deletions

View File

@ -1087,6 +1087,8 @@ vfs_get_super_by_vpath (const vfs_path_t * vpath)
goto ret;
if (i != 0)
break;
super = NULL;
}
ret:
@ -1118,7 +1120,7 @@ vfs_s_get_path (const vfs_path_t * vpath, struct vfs_s_super **archive, int flag
if (path_element->path != NULL)
retval = path_element->path;
super = vfs_get_super_by_vpath(vpath);
super = vfs_get_super_by_vpath (vpath);
if (super != NULL)
goto return_success;