From 0477cda1c32bfbb42691c7fb4771581a17596ac7 Mon Sep 17 00:00:00 2001 From: "Andrew V. Samoilov" Date: Tue, 22 May 2001 13:18:18 +0000 Subject: [PATCH] * Make-mc.in (mostlyclean): Remove $(VFSSOOBJS). (clean): Remove *.so. * smbfs.c: Include utilvfs.h instead of ../config.h, ../src/main.h, ../src/tty.h and ../src/global.h. (password, username): Made static. (is_error): Commented out. (loaddir_helper): Don't ignore hidden files, style fixes. (browsing_helper): typestr declared as char *, fstrcpy replaced by =. (do_connect): Call cli_shutdown () and authinfo_remove () if cli_session_setup () fails. It is not good idea to remember wrong username/password. (smbfs_free_dir): Nested between #ifdef SMBFS_FREE_DIR ... #endif. (smbfs_readdir): #ifdef SMBFS_FREE_DIR used instead of C comment. --- vfs/ChangeLog | 20 ++++++++++++++++++++ vfs/Make-mc.in | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/vfs/ChangeLog b/vfs/ChangeLog index 939057871..1c335176c 100644 --- a/vfs/ChangeLog +++ b/vfs/ChangeLog @@ -1,3 +1,23 @@ +2001-05-22 Andrew V. Samoilov + + * Make-mc.in (mostlyclean): Remove $(VFSSOOBJS). + (clean): Remove *.so. + + * smbfs.c: Include utilvfs.h instead of ../config.h, ../src/main.h, + ../src/tty.h and ../src/global.h. + + (password, username): Made static. + (is_error): Commented out. + (loaddir_helper): Don't ignore hidden files, style fixes. + (browsing_helper): typestr declared as char *, fstrcpy replaced by =. + + (do_connect): Call cli_shutdown () and authinfo_remove () if + cli_session_setup () fails. It is not good idea to remember + wrong username/password. + + (smbfs_free_dir): Nested between #ifdef SMBFS_FREE_DIR ... #endif. + (smbfs_readdir): #ifdef SMBFS_FREE_DIR used instead of C comment. + 2001-05-22 Pavel Roskin * sfs.c (redirect): Don't free the filename after failed diff --git a/vfs/Make-mc.in b/vfs/Make-mc.in index 9266eb636..df8ea066e 100644 --- a/vfs/Make-mc.in +++ b/vfs/Make-mc.in @@ -220,14 +220,14 @@ mostlyclean: if test -f samba/Makefile; then \ (cd samba && $(MAKE) mostlyclean); \ else :; fi - rm -f *.o core a.out + rm -f *.o core a.out $(VFSSOOBJS) clean: mostlyclean (cd extfs && $(MAKE) clean) if test -f samba/Makefile; then \ (cd samba && $(MAKE) clean); \ else :; fi - rm -f mcserv *.a + rm -f mcserv *.a *.so distclean: clean (cd extfs && $(MAKE) distclean)