From f51a940aec5a203a8ecc5128c1544391e09cd4b0 Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Fri, 23 Oct 1998 10:38:22 +0000 Subject: [PATCH] Removed debugging messages and fixed Makefile.in. --- vfs/ChangeLog | 11 +++++++++-- vfs/Makefile.in | 2 +- vfs/sfs.c | 1 - vfs/tar.c | 1 - 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/vfs/ChangeLog b/vfs/ChangeLog index f93d1f0c3..67d661159 100644 --- a/vfs/ChangeLog +++ b/vfs/ChangeLog @@ -1,12 +1,19 @@ +Fri Oct 23 12:29:48 1998 Pavel Machek + + * 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 * 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 diff --git a/vfs/Makefile.in b/vfs/Makefile.in index 2761cbee9..679e4e46e 100644 --- a/vfs/Makefile.in +++ b/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 diff --git a/vfs/sfs.c b/vfs/sfs.c index ef6880595..4145cf27b 100644 --- a/vfs/sfs.c +++ b/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) diff --git a/vfs/tar.c b/vfs/tar.c index 076a725c9..18e1c8206 100644 --- a/vfs/tar.c +++ b/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);