Browse Source

Removed debugging messages and fixed Makefile.in.

Pavel Machek 26 years ago
parent
commit
f51a940aec
4 changed files with 10 additions and 5 deletions
  1. 9 2
      vfs/ChangeLog
  2. 1 1
      vfs/Makefile.in
  3. 0 1
      vfs/sfs.c
  4. 0 1
      vfs/tar.c

+ 9 - 2
vfs/ChangeLog

@@ -1,12 +1,19 @@
+Fri Oct 23 12:29:48 1998  Pavel Machek  <pavel@atrey.karlin.mff.cuni.cz>
+
+	* Makefile.in: add direntry.o to list of NONETFILES so we actually compile
+
+	* sfs.c, tar.c: remove debugging messages (which really should not
+ 	escape from my tree)
+
 Thu Oct 22 22:24:44 1998  Pavel Machek  <pavel@bug.ucw.cz>
 
 	* README: added. If you are using emacs or hacking libvfs, please
  	read this one.
 
 	* direntry.{c,h}: new library created, so that same entry/inode
- 	code does not have to be copied in every handler
+ 	code does not have to be copied in every handler. 
 
-	* tar.c: converted to use direntry.c library
+	* tar.c: converted to use direntry.c library, which means BIG changes. 
 
 	* ftpfs.c: small updates to make code look nicer
 	

+ 1 - 1
vfs/Makefile.in

@@ -18,7 +18,7 @@ AR = @AR@
 # VFS code
 #
 NETFILES   = tcputil.o ftpfs.o mcfs.o utilvfs.o
-NONETFILES = local.o vfs.o tar.o names.o container.o extfs.o sfs.o fish.o @undelfs_o@
+NONETFILES = local.o vfs.o tar.o names.o container.o extfs.o sfs.o fish.o direntry.o @undelfs_o@
 
 VFSSRCS = local.c vfs.c mcfs.c tcputil.c tar.c names.c \
 	ftpfs.c container.c mcserv.c extfs.c undelfs.c utilvfs.c sfs.c fish.c

+ 0 - 1
vfs/sfs.c

@@ -235,7 +235,6 @@ static void sfs_free (vfsid id)
     struct cachedfile *which = (struct cachedfile *) id;
     struct cachedfile **cur = &head;
 
-    message_1s(1, "%s", "Freeing sfs file" );
     unlink( CUR->cache );
     while (CUR) {
         if (CUR == which)

+ 0 - 1
vfs/tar.c

@@ -65,7 +65,6 @@ static struct stat hstat;		/* Stat struct corresponding */
 
 static void tar_free_archive (vfs *me, vfs_s_super *archive)
 {
-    message_1s( 1, archive->name, "Freeing tar archive");
     if (archive->u.tar.fd != -1)
 	mc_close(archive->u.tar.fd);