mirror of https://github.com/MidnightCommander/mc
* smbfs.c (smbfs_nothingisopen): Warning fix for 64-bit systems.
(smbfs_free): Likewise.
This commit is contained in:
parent
fc1319fd31
commit
4d4294fdb4
|
@ -1,3 +1,8 @@
|
|||
2003-01-24 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* smbfs.c (smbfs_nothingisopen): Warning fix for 64-bit systems.
|
||||
(smbfs_free): Likewise.
|
||||
|
||||
2003-01-24 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||
|
||||
* extfs/urar.in: Search $PATH for unrar, fallback to rar.
|
||||
|
|
|
@ -1650,14 +1650,14 @@ smbfs_getid (vfs *me, char *p, struct vfs_stamping **parent)
|
|||
static int
|
||||
smbfs_nothingisopen (vfsid id)
|
||||
{
|
||||
DEBUG(3, ("smbfs_nothingisopen(%d)\n", (int)id));
|
||||
DEBUG (3, ("smbfs_nothingisopen(%p)\n", id));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
smbfs_free (vfsid id)
|
||||
{
|
||||
DEBUG(3, ("smbfs_free(%d)\n", (int)id));
|
||||
DEBUG (3, ("smbfs_free(%p)\n", id));
|
||||
/* FIXME: Should not be empty */
|
||||
authinfo_free_all ();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue